Get status of backfill operations
Parameters
Output
Encoding
application/jsonoperation
ref#backfillOperation
Optional
Single operation (when filtered by ID)
operations
array
Optional
Backfill operations
Errors
AuthenticationRequired
AdminRequired
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "AuthenticationRequired"
},
{
"name": "AdminRequired"
}
],
"output": {
"schema": {
"type": "object",
"properties": {
"operation": {
"ref": "#backfillOperation",
"type": "ref",
"description": "Single operation (when filtered by ID)"
},
"operations": {
"type": "array",
"items": {
"ref": "#backfillOperation",
"type": "ref"
},
"description": "Backfill operations"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"id": {
"type": "string",
"description": "Filter by specific operation ID"
},
"status": {
"type": "string",
"description": "Filter by operation status",
"knownValues": [
"running",
"completed",
"failed",
"cancelled"
]
}
}
},
"description": "Get status of backfill operations"
}