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

ListSoftDeletedResources

List all soft-deleted resources with optional filters and pagination

Execution Availability

Try It Out

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

Query Parameters

Request Inputs

Query Parameters

  • resourceTypeString

    Filter by resource type; empty means all types Filter by resource type; empty means all types

  • deletedAfterString

    Return only resources deleted after this timestamp Return only resources deleted after this timestamp

  • deletedBeforeString

    Return only resources deleted before this timestamp Return only resources deleted before this timestamp

  • ownerTypeString

    Type of the owner to filter by Type of the owner to filter by

  • ownerUuidString

    UUID of the owner to filter by UUID of the owner to filter by

Responses

200 OK

On success, this API returns the following response structure.

  • itemsList

    List of soft-deleted resources matching the query filters

    Example: (nested array)

    • resourceTypeString

      Type of the soft-deleted resource

      Example: VmInstance

    • resourceUuidString

      UUID of the soft-deleted resource

      Example: a1b2c3d4-e5f6-7890-abcd-ef1234567890

    • resourceNameString

      Human-readable name of the soft-deleted resource

      Example: vm-web-01

    • deletionTimestampString

      Timestamp when the resource was soft-deleted

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

    • retentionRemainingDaysInteger

      Number of days remaining before permanent deletion

      Example: 7

  • totalString

    Total number of soft-deleted resources matching the filters

    Example: 42

Endpoint

GET/api/v1/deletion/soft-deleted

/api/v1/deletion/soft-deleted

Operation ID

ListSoftDeletedResources

Permalink

Request Example

curl -X GET '{host}/api/v1/deletion/soft-deleted' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "items": [
    {}
  ],
  "total": 42
}

Change History

This API has no change history records yet.

View all change history