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.
The path to the field to copy from. This is required for copy
and move
operations.
The value to set the field to. This is required for add
, replace
and test
operations.
curl -i -X PATCH \
'https://api.synqly.com/v1/ticketing/tickets/{ticketId}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '[
{
"op": "add",
"path": "string",
"from": "string",
"value": null
}
]'
{ "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 POST \
'https://api.synqly.com/v1/ticketing/attachments/{ticketId}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"file_name": "string",
"content": "string"
}'
{ "result": { "id": "string", "ticket_id": "string", "file_name": "string", "file_type": "string", "file_size": 0, "created_date": "2019-08-24T14:15:22Z", "creator": "string", "unmapped": {} }, "meta": { "stats": { … }, "api": { … } } }
curl -i -X GET \
'https://api.synqly.com/v1/ticketing/attachments/{ticketId}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "result": [ { … } ], "cursor": "string", "meta": { "stats": { … }, "api": { … } } }