Get all tickets
GET/v3/tickets
Get all tickets
Request
Query Parameters
Possible values: >= 1
and <= 100
Default value: 50
Record limit per request; default is 50, maximum is 100.
Possible values: >= 1
Page of results
Ticket requester's contact id
Ticket agent's user id
Ticket team
Ticket priority
Ticket status
Ticket created date greater than or equal to. Should be in the format YYYY-MM-DDTHH:MM:SS
Possible values: <= now characters
Ticket created date less than or equal to. Should be in the format YYYY-MM-DDTHH:MM:SS
Ticket updated date greater than or equal to. Should be in the format YYYY-MM-DDTHH:MM:SS
Possible values: <= now characters
Ticket updated date less than or equal to. Should be in the format YYYY-MM-DDTHH:MM:SS
Responses
- 200
Successful
- */*
- Schema
- Example (from schema)
Schema
Array [
]
data
object[]
Ticket id
Possible values: <= 200 characters
Ticket subject
Ticket description
{
"data": [
{
"id": 1,
"requester": {},
"subject": "Ticket 1",
"description": "Ticket 1 description",
"priority": {},
"status": {},
"custom_fields": {},
"source": {},
"agent": {},
"team": {},
"created_at": "2022-03-10T12:34:00.860Z",
"updated_at": "2022-03-10T12:34:00.860Z",
"deleted_at": "2022-03-10T12:34:00.860Z",
"first_response_due": "2022-03-11T12:34:00.860Z",
"resolution_due": "2022-03-11T12:34:00.860Z"
}
],
"has_next_page": true
}