v53

latestOpenAPI 3.0.3raw.githubusercontent.com2026-08-076771,7565.2 MB
slo

Retrieve the status of the bulk deletion

Retrieve the status of the bulk deletion operation for SLOs. This endpoint returns the status of the bulk deletion operation, including whether it is completed and the results of the operation.

get/s/{spaceId}/api/observability/slos/_bulk_delete/{taskId}

Path parameters

spaceIdstring required
Example:default

An identifier for the space. If /s/ and the identifier are omitted from the path, the default space is used.

taskIdstring required
Example:8853df00-ae2e-11ed-90af-09bb6422b258

The task id of the bulk delete operation

Headers

kbn-xsrfstring required

Cross-site request forgery protection

Response

Successful response

errorstring

The error message if the bulk deletion operation failed

isDoneboolean

Indicates if the bulk deletion operation is completed

Example response

{
  "error": "Task not found",
  "isDone": true,
  "results": [
    {
      "error": "SLO [d08506b7-f0e8-4f8b-a06a-a83940f4db91] not found",
      "id": "d08506b7-f0e8-4f8b-a06a-a83940f4db91",
      "success": true
    }
  ]
}