Get ticket
GET/tickets/:ticket_id
note
This feature is only available in Preview to select customers on our Enterprise plan. Contact us for more information.
Returns an Ticket object with the given id.
Request
Path Parameters
ticket_id stringrequired
Example: 0258cbc6-6020-430a-848e-aafacbadf4ae
Query Parameters
include_raw_data boolean
Whether to include raw data fetched from the 3rd party provider.
Example: true
Header Parameters
x-customer-id stringrequired
The customer ID that uniquely identifies the customer in your application
Example: my-customer-1
x-provider-name stringrequired
The provider name
Example: salesforce
Responses
- 200
TicketData
- application/json
- Schema
- Example (from schema)
Schema
name stringnullablerequired
assignees string[]
creator stringrequired
due_date string
status string
description string
collections string[]
ticket_type string
account string
contact string
parent_ticket string
tags string[]
completed_at string
ticket_url string
priority string
{
"name": "Please add more integrations",
"assignees": [
"17a54124-287f-494d-965e-3c5b330c9a68"
],
"creator": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"due_date": "2022-10-11T00:00:00Z",
"status": "OPEN",
"description": "Can you please add more integrations? It'll make syncing data much easier!",
"collections": [
"fb8c55b6-1cb8-4b4c-9fb6-17924231619d"
],
"ticket_type": "incident",
"account": "0958cbc6-6040-430a-848e-aafacbadf4ae",
"contact": "65c345ba-6870-4974-87ba-dd31509c367a",
"parent_ticket": "75b33d04-30d2-4f3e-be45-27838bc94342",
"tags": [
"enterprise"
],
"completed_at": "2021-12-09T00:00:00Z",
"ticket_url": "https://thirdpartysoftware.com/project/3/issue/1",
"priority": "HIGH"
}
Loading...