Get all ticket fields
GET/v3/ticket_fields
Get all ticket fields
Request
Query Parameters
Ticket field created date greater than or equal to. Should be in the format YYYY-MM-DDTHH:MM:SS
Possible values: <= now characters
Ticket field created date less than or equal to. Should be in the format YYYY-MM-DDTHH:MM:SS
Ticket field updated date greater than or equal to. Should be in the format YYYY-MM-DDTHH:MM:SS
Possible values: <= now characters
Ticket field updated date less than or equal to. Should be in the format YYYY-MM-DDTHH:MM:SS
Possible values: >= 1
and <= 100
Default value: 50
Record limit per request; default is 50, maximum is 100.
Possible values: >= 1
Page of results
Responses
- 200
Successful
- */*
- Schema
- Example (from schema)
Schema
Array [
]
data
object[]
Ticket field ID
Ticket field name
Ticket field description
Ticket field internal name
Ticket field type
{
"data": [
{
"id": 1,
"name": "Custom field 1",
"description": "string",
"internal_name": "Custom_field_1",
"type": "Dropdown",
"is_default": true,
"mandatory": true,
"options": [
"string"
],
"created_at": "2022-03-10T12:34:00.860Z",
"updated_at": "2022-03-10T12:34:00.860Z"
}
],
"has_next_page": true
}