Skip to main content
Infrastructure/Resource Deletion

GetDeletionStatus

Retrieve the current deletion status of a resource

GET/api/v1/deletion/{resourceType}/{resourceUuid}/status

Operation ID

GetDeletionStatus

Since

1.0.0

Execution Mode

Synchronous

Auth Context

Auth Required

Auth Context

Send these values as request headers when calling this API.

AuthorizationstringRequired

Bearer Token

X-Tenant-IDstring

X-Tenant-ID

Request Inputs

Path Parameters

  • resourceType
    StringRequired

    Type of the resource to query deletion status for

  • resourceUuid
    StringRequired

    UUID of the resource to query deletion status for

Responses

200 OK
200 OK

On success, this API returns the following response structure.

  • phase
    String

    Current lifecycle phase of the deletion operation

    Example: Deleting

  • deletionTimestamp
    String

    Timestamp when the deletion was initiated

    Example: 2026-01-15T08:00:00Z

  • failureReason
    String

    Human-readable reason if the deletion has failed

    Example: finalizer cleanup-network timed out

  • finalizers
    List

    Details of each finalizer and its current execution status

    Example: (nested array)

    • name
      String

      Unique name identifying this finalizer handler

      Example: cleanup-network

    • description
      String

      Human-readable description of what this finalizer does

      Example: Releases network interfaces associated with the resource

    • status
      String

      Current execution status of the finalizer

      Example: Succeeded

    • error
      String

      Error message if the finalizer failed

      Example: timeout waiting for network release