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/ticketing/attachments/{ticketId}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "result": [ { … } ], "cursor": "string", "meta": { "stats": { … }, "api": { … } } }
curl -i -X GET \
'https://api.synqly.com/v1/ticketing/attachments/{ticketId}/{attachmentId}/download' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "result": { "file_name": "string", "file_type": "string", "content": "string", "unmapped": {} }, "meta": { "stats": { … }, "api": { … } } }
curl -i -X DELETE \
'https://api.synqly.com/v1/ticketing/attachments/{ticketId}/{attachmentId}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'