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/notifications/get/{notificationId}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "result": { "id": "string", "summary": "string", "priority": "URGENT", "notification_status": "OPEN", "project": "string", "status": "string", "description": "string", "issue_type": "string", "creator": "string", "assignee": "string", "contact": "string", "tags": [ … ], "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/notifications/create \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"summary": "string",
"priority": "URGENT",
"project": "string",
"status": "string",
"description": "string",
"issue_type": "string",
"creator": "string",
"assignee": "string",
"contact": "string",
"tags": [
"string"
]
}'
{ "result": { "id": "string", "summary": "string", "priority": "URGENT", "notification_status": "OPEN", "project": "string", "status": "string", "description": "string", "issue_type": "string", "creator": "string", "assignee": "string", "contact": "string", "tags": [ … ], "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/notifications/clear/{notificationId}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'