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}/notes/{noteId}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
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}/notes/{noteId}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '[
{
"op": "add",
"path": "string",
"from": "string",
"value": null
}
]'
{ "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": {} } }