Update the status of a backfill. Currently, the only supported operation is cancelling a backfill by setting status to "CANCELLED".
What happens when you cancel:
- Backfill status is changed to "CANCELLED"
- All pending/queued transfer runs associated with this backfill are cancelled
- Transfer runs that are already running will complete
- The backfill's
end_timeis set to the cancellation time - The
removed_timeandremoved_user_idfields are set
Important: This endpoint does NOT delete the backfill.
- The backfill record remains in the system with status "CANCELLED"
- You can still retrieve the backfill information using GET /v1/teams//backfills/
Returns: The updated backfill object with the new status and updated timestamps.
Important Notes:
- The backfill must exist and belong to your team
- Requires scope
dwh_transfers_write - Your account must have
dwh.transfer.editpermission. See roles and permissions. - Only backfills with incomplete status (CREATED, SCHEDULED, RUNNING, FAILED) can be cancelled
- Returns 404 if the backfill does not exist or does not belong to your team
- Returns 422 if the backfill cannot be updated (e.g., already in a final state)
Bearer token authentication. Include the token in the Authorization header:
Authorization: Bearer <your-token>
Unique identifier of the team
Unique identifier of the backfill
Status update parameters
{
"status": "CANCELLED"
}New status for the backfill. Currently only "CANCELLED" is supported.
Backfill status successfully updated
{
"meta": {
"request_id": "01892A4D-7586-7000-8000-000000000000"
},
"data": {
"transfer_backfill_id": 12345,
"transfer_id": 456789,
"range_start_date": "2024-01-01",
"range_end_date": "2024-01-31",
"created_time": "2024-02-01T09:00:00Z",
"created_user_id": 789,
"removed_time": "2024-02-01T15:30:00Z",
"removed_user_id": 790,
"start_time": "2024-02-01T10:00:00Z",
"end_time": "2024-02-01T15:30:00Z",
"status": "CANCELLED",
"transfer_runs_total": 31,
"transfer_runs_created": 31,
"transfer_runs_completed": 25,
"transfer_runs_failed": 2,
"error_report": []
}
}API request ID
Unique identifier of the backfill
ID of the transfer this backfill belongs to
Start date of the backfill range
End date of the backfill range
Timestamp when the backfill was created (ISO 8601 format)
ID of the user who created the backfill
Timestamp when the backfill was cancelled/removed (ISO 8601 format)
ID of the user who cancelled/removed the backfill
Timestamp when the backfill processing started (ISO 8601 format)
Timestamp when the backfill processing completed (ISO 8601 format)
Current status of the backfill
Total number of transfer runs created for this backfill
Number of transfer runs that have been created
Number of transfer runs that have completed successfully
Number of transfer runs that have failed
List of errors that occurred during backfill processing (empty array if no errors)
The date of the transfer run that failed
Error message describing what went wrong
Bad Request - The request was invalid or cannot be served.
{
"meta": {
"request_id": "01892A4D-7586-7000-8000-000000000000"
},
"error": {
"code": "INVALID_PARAMETER",
"message": "Invalid Parameter",
"description": "The request contains invalid or malformed parameters."
}
}API request ID
Error code
Error message
Error description
Unauthorized - Authentication is required and has failed or has not been provided.
{
"meta": {
"request_id": "019461A0-0000-7000-8000-000000000000"
},
"error": {
"code": "API_KEY_INVALID",
"message": "Invalid API key",
"description": "Provided API key was invalid."
}
}API request ID
Error code
Error message
Error description
Forbidden - The request is understood, but access is not allowed
{
"meta": {
"request_id": "01892A4D-7586-7000-8000-000000000000"
},
"error": {
"code": "ACCESS_DENIED",
"message": "Access Denied",
"description": "You do not have permission to perform this operation."
}
}API request ID
Error code
Error message
Error description
Backfill not found
{
"meta": {
"request_id": "01892A4D-7586-7000-8000-000000000000"
},
"error": {
"code": "NOT_FOUND",
"message": "Not Found",
"description": "The requested backfill could not be found or you do not have access to it."
}
}API request ID
Error code
Error message
Error description
Unprocessable Entity - request validation failed
API request ID
Error code
Error message
Error description
Too Many Requests - Rate limit exceeded.
{
"meta": {
"request_id": "019461A0-0000-7000-8000-000000000000"
},
"error": {
"code": "API_ROW_QUOTA_EXCEEDED",
"message": "Row quota exceeded",
"description": "You have exceeded your row-quota limit of rows for this month. Please log into Supermetrics Hub at https://hub.supermetrics.com/ and upgrade your plan, or contact our Supermetrics support team."
}
}API request ID
Error code
Error message
Error description
Internal Server Error - An error occurred on the server.
{
"meta": {
"request_id": "01892A4D-7586-7000-8000-000000000000"
},
"error": {
"code": "INTERNAL_SERVER_ERROR",
"message": "Internal Server Error",
"description": "An unexpected error occurred. Please try again later or contact support."
}
}API request ID
Error code
Error message
Error description