Cancel a running backfill operation
Input
Encoding
application/jsonid
string
Required
Operation ID to cancel
Output
Encoding
application/jsonsuccess
boolean
Required
Whether the operation was cancelled
Errors
AuthenticationRequired
AdminRequired
InvalidRequest
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": "string",
"description": "Operation ID to cancel"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "AuthenticationRequired"
},
{
"name": "AdminRequired"
},
{
"name": "InvalidRequest"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"success"
],
"properties": {
"success": {
"type": "boolean",
"description": "Whether the operation was cancelled"
}
}
},
"encoding": "application/json"
},
"description": "Cancel a running backfill operation"
}