v1

latestOpenAPI 3.0.32026-08-06138294578.6 KB
Bulk Sync

Cancel Bulk Sync Execution

Requests cancellation of a specific bulk sync execution.

Cancellation is asynchronous. A successful response means the cancellation signal has been queued; the execution continues to run until the signal is processed. Poll GET /api/bulk/syncs/{id}/executions/{exec_id} until the execution reaches a terminal state (completed, canceled, or failed) to confirm cancellation has taken effect.

post/api/bulk/syncs/{id}/executions/{exec_id}/cancel

Path parameters

idstring uuid required

The bulk sync ID.

Example:248df4b7-aa70-47b8-a036-33ac447e668d

The bulk sync ID.

exec_idstring uuid required

The execution ID to cancel.

Example:248df4b7-aa70-47b8-a036-33ac447e668d

The execution ID to cancel.

Headers

X-Polytomic-Versionstring

Response

OK

Example response

{
  "data": {
    "message": "Cancellation requested"
  }
}