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 DELETE \
'https://api.synqly.com/v1/ticketing/tickets/{ticketId}/comments/{commentId}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
curl -i -X POST \
'https://api.synqly.com/v1/ticketing/tickets/{ticketId}/notes' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"content": "string",
"title": "string"
}'
{ "result": { "id": "string", "ticket_id": "string", "content": "string", "creator": "string", "title": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "unmapped": {} } }