The Synqly Connector APIs provide a unifying interface and data model for all supported service Providers.
See the Synqly Overview for more information.
The Synqly Connector APIs provide a unifying interface and data model for all supported service Providers.
See the Synqly Overview for more information.
curl -i -X GET \
'https://api.synqly.com/v1/operations/{operationId}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "result": { "id": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "account_id": "string", "integration_id": "string", "schedule": { … }, "operation": "string", "input": { … }, "status": "SCHEDULED", "errors": [ … ], "cpu_time": 0, "in_bytes": 0 } }
curl -i -X POST \
'https://api.synqly.com/v1/operations/{operationId}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
curl -i -X POST \
https://api.synqly.com/v1/operations \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"schedule": {
"run_at": "2019-08-24T14:15:22Z",
"interval": "string"
},
"operation": "string",
"input": {
"filters": [
"string"
],
"limit": 0
}
}'
{ "result": { "operation": { … } } }