v1
latestOpenAPI 3.0.32026-08-06138294578.6 KBBulk Sync
Get Bulk Sync Execution
Returns a single bulk sync execution, including per-schema execution status.
The response includes a breakdown of each schema (table or object) that participated in the execution, with its individual status, row counts, and any error details. This makes it suitable for diagnosing partial failures where some schemas succeeded while others did not.
get/api/bulk/syncs/{id}/executions/{exec_id}
Path parameters
idstring uuid required
Unique identifier of the bulk sync.
Example:248df4b7-aa70-47b8-a036-33ac447e668d
Unique identifier of the bulk sync.
exec_idstring uuid required
Unique identifier of the execution.
Example:248df4b7-aa70-47b8-a036-33ac447e668d
Unique identifier of the execution.
Headers
X-Polytomic-Versionstring
Response
OK
Example response
{
"data": {
"completed_at": "2023-04-25T12:00:00Z",
"created_at": "2023-04-25T12:00:00Z",
"id": "248df4b7-aa70-47b8-a036-33ac447e668d",
"record_count": 1000,
"schemas": [
{
"completed_at": "2023-04-25T12:00:00Z",
"created_at": "2023-04-25T12:00:00Z",
"output_name": "contact",
"record_count": 1000,
"schema": "contact",
"started_at": "2023-04-25T12:00:00Z",
"updated_at": "2023-04-25T12:00:00Z"
}
],
"started_at": "2023-04-25T12:00:00Z",
"type": "scheduled",
"updated_at": "2023-04-25T12:00:00Z"
}
}