Returns the status of a DataSync operation
| Client Servlet | Server Servlet | HTTP Methods Supported | Requires Authentication |
|---|---|---|---|
| None. | SRDataSyncAPI | GET, POST | Yes. |
Returns the task status ( 'queued' | 'running' | 'success' | 'failure' | 'stale' ) for the given task_id. When the task status is 'stale', a detailMessage is included to give more information about the task state. This method should be used with launchDataSync.
See topic Common Parameters.
Required. Task ID
Type xsd:int.
See topic HTTP Status Codes.
XML response
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<getDataSyncStatusResponse xmlns="http://convio.com/crm/v1.0">
<taskStatus>
<status>queued</status>
<detailMessage>detailed message if applicable...</detailMessage>
</taskStatus>
</getDataSyncStatusResponse>
JSON response
{"getDataSyncStatusResponse":{"taskStatus":{"detailMessage":"detailed message if applicable...","status":"queued"}}}