Skip to main content
GET
/
v2
/
tickets
/
{ticket_id}
/
external-tickets
List Ticket External Tickets
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"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

ticket_id
string
required

The ID of the Serval ticket to list external tickets for

Response

Success

data
ExternalTicket · object[]