Launch a DataSync operation given an operation ID.
| Client Servlet | Server Servlet | HTTP Methods Supported | Requires Authentication |
|---|---|---|---|
| None. | SRDataSyncAPI | GET, POST | Yes. |
Runs a DataSync operation based on the given operation_id. Returns a task_id for the operation's exchange task. The return value task_id can then be used to check the status of the launched DataSync operation by querying getDataSyncStatus.
See topic Common Parameters.
Required. Operation ID
Type xsd:int.
See topic HTTP Status Codes.
XML response
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<launchDataSyncResponse xmlns="http://convio.com/crm/v1.0">
<taskId>
<id>12345</id>
</taskId>
</launchDataSyncResponse>
JSON response
{"launchDataSyncResponse":{"taskId":{"id":"12345"}}}