Skip to main content
Infrastructure/Resource Deletion
GETDeletionSince 1.0SynchronousAuth Required

GetDeletionStatus

Retrieve the current deletion status of a resource

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Path Parameters

Request Inputs

Path Parameters

  • resourceTypeStringRequired

    Type of the resource to query deletion status for

  • resourceUuidStringRequired

    UUID of the resource to query deletion status for

Responses

200 OK

On success, this API returns the following response structure.

  • phaseString

    Current lifecycle phase of the deletion operation

    Example: Deleting

  • deletionTimestampString

    Timestamp when the deletion was initiated

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

  • failureReasonString

    Human-readable reason if the deletion has failed

    Example: finalizer cleanup-network timed out

  • finalizersList

    Details of each finalizer and its current execution status

    Example: (nested array)

    • nameString

      Unique name identifying this finalizer handler

      Example: cleanup-network

    • descriptionString

      Human-readable description of what this finalizer does

      Example: Releases network interfaces associated with the resource

    • statusString

      Current execution status of the finalizer

      Example: Succeeded

    • errorString

      Error message if the finalizer failed

      Example: timeout waiting for network release

Endpoint

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

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

Operation ID

GetDeletionStatus

Permalink

Request Example

curl -X GET '{host}/api/v1/deletion/{resourceType}/{resourceUuid}/status' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "phase": "Deleting",
  "deletionTimestamp": "example",
  "failureReason": "finalizer cleanup-network timed out",
  "finalizers": [
    {}
  ]
}

Change History

This API has no change history records yet.

View all change history