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.
Add metadata to the response by invoking meta functions. Documentation for meta functions is available at https://docs.synqly.com/api-reference/meta-functions. Not all meta function are available at every endpoint.
Select a field to order the results by. Defaults to time
. To control the direction of the sorting, append [asc]
or [desc]
to the field name. For example, name[desc]
will sort the results by name
in descending order. The ordering defaults to asc
if not specified. May be used multiple times to order by multiple fields, and the ordering is applied in the order the fields are specified.
curl -i -X GET \
'https://api.synqly.com/v1/ticketing/tickets?cursor=string&filter=string&limit=0&meta=string&order=string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "result": [ { … } ], "cursor": "string", "meta": { "stats": { … }, "api": { … } } }
curl -i -X POST \
https://api.synqly.com/v1/ticketing/tickets \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"summary": "string",
"creator": "string",
"assignee": "string",
"contact": "string",
"description": "string",
"priority": "URGENT",
"due_date": "2019-08-24T14:15:22Z",
"completion_date": "2019-08-24T14:15:22Z",
"status": "string",
"project": "string",
"issue_type": "string",
"tags": [
"string"
],
"custom_fields": {},
"name": "string"
}'
{ "result": { "id": "string", "summary": "string", "creator": "string", "assignee": "string", "contact": "string", "description": "string", "priority": "URGENT", "due_date": "2019-08-24T14:15:22Z", "completion_date": "2019-08-24T14:15:22Z", "status": "string", "project": "string", "issue_type": "string", "tags": [ … ], "attachments": [ … ], "custom_fields": {}, "unmapped": {}, "name": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }, "meta": { "stats": { … }, "api": { … } } }
curl -i -X GET \
'https://api.synqly.com/v1/ticketing/tickets/{ticketId}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "result": { "id": "string", "summary": "string", "creator": "string", "assignee": "string", "contact": "string", "description": "string", "priority": "URGENT", "due_date": "2019-08-24T14:15:22Z", "completion_date": "2019-08-24T14:15:22Z", "status": "string", "project": "string", "issue_type": "string", "tags": [ … ], "attachments": [ … ], "custom_fields": {}, "unmapped": {}, "name": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }, "meta": { "stats": { … }, "api": { … } } }