Connector API

The Synqly Connector APIs provide a unifying interface and data model for all supported service Providers.

See the Synqly Overview for more information.

Download OpenAPI description
Languages
Servers
Synqly
https://api.synqly.com/

Assets

Operations

Edr

Operations

Hooks

Operations

Identity

Operations

Notifications

Operations

Operations (In Development)

In Development

This feature is actively being developed. Breaking changes should be expected.

Please contact us before using this feature.

Operations

Siem

Operations

Sink

Operations

Storage

Operations

Ticketing

Operations

Download Attachment

Request

[beta: currently supported by Jira] Downloads the Attachment object matching {attachmentId} for the Ticket matching {tickedId} from the token-linked Integration.

Path
ticketIdstring(Id)required
attachmentIdstring(Id)required
curl -i -X GET \
  'https://api.synqly.com/v1/ticketing/attachments/{ticketId}/{attachmentId}/download' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Bodyapplication/json
resultobject(Attachment)required
result.​file_namestringrequired

The name of the file.

result.​file_typestringrequired

The type of the file.

result.​contentstring(byte)required

File contents

result.​unmappedobject(Object)

The Object type is used to represent an object with arbitrary fields. The keys are strings and the values are any type.

metaobject(MetaResponse)
Response
application/json
{ "result": { "file_name": "string", "file_type": "string", "content": "string", "unmapped": {} }, "meta": { "stats": {}, "api": {} } }

Delete Attachment

Request

[beta: currently supported by Jira] Deletes the Attachment object matching {attachmentId} for the Ticket matching {tickedId} from the token-linked Integration.

Path
ticketIdstring(Id)required
attachmentIdstring(Id)required
curl -i -X DELETE \
  'https://api.synqly.com/v1/ticketing/attachments/{ticketId}/{attachmentId}' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Response
No content

List Comments

Request

Lists all comments for the ticket matching {ticketId} from the token-linked Integration.

Path
ticketIdstring(Id)required
curl -i -X GET \
  'https://api.synqly.com/v1/ticketing/tickets/{ticketId}/comments' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Bodyapplication/json
resultArray of objects(Comment)required
result[].​idstring(Id)required
result[].​ticket_idstring(Id)required
result[].​creatorstringrequired

The user who created the comment.

result[].​contentstringrequired

The content of the comment formatted as markdown.

result[].​created_atstring(date-time)required

The date the comment was created.

result[].​updated_atstring or null(date-time)

The date the comment was last updated.

result[].​unmappedobject(Object)

The Object type is used to represent an object with arbitrary fields. The keys are strings and the values are any type.

cursorstringrequired

Cursor to use to retrieve the next page of results

metaobject(MetaResponse)
Response
application/json
{ "result": [ {} ], "cursor": "string", "meta": { "stats": {}, "api": {} } }

Vulnerabilities

Operations