List all external tickets linked to a Serval ticket. This shows all the external systems (Jira, Linear, ServiceNow, etc.) where this ticket is synced. Use the is_origin field to identify the original source of the ticket.
cURL
curl --request GET \ --url https://public.api.serval.com/v2/tickets/{ticket_id}/external-tickets \ --header 'Authorization: Bearer <token>'
{ "data": [ { "id": "<string>", "externalTicketId": "<string>", "ticketId": "<string>", "sourceType": "EXTERNAL_TICKET_SOURCE_TYPE_UNSPECIFIED", "sourceId": "<string>", "isOrigin": true, "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z", "url": "<string>" } ] }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the Serval ticket to list external tickets for
Success
Show child attributes
Was this page helpful?