cURL
curl --request GET \ --url https://api.squared.ai/api/v1/syncs/{sync_id}/sync_runs/{sync_run_id} \ --header 'Authorization: Bearer <token>'
{ "data": { "id": "<string>", "type": "<string>", "attributes": { "sync_id": 123, "status": "<string>", "started_at": "2023-11-07T05:31:56Z", "finished_at": "2023-11-07T05:31:56Z", "duration": 123, "total_query_rows": 123, "total_rows": 123, "successful_rows": 123, "failed_rows": 123, "error": "<string>", "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z" } } }
Retrieves a sync run using sync_run_id for a specific sync.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the sync.
The ID of the sync_run.
A JSON object representing the sync run
Show child attributes
Was this page helpful?