Skip to main content

Support Categories

Get a list of topics that need support, used in creating tickets

HTTP Request

[GET] /api/v6/ticket_categories

Query Parameters

Fields

FieldsTypeDescription
idintegerIdentifier
cate_namestringCategory name
descriptionstringDescription
validstringValid or not
creator_idboolCreator
start_response_textintegerDefault text when creating a new ticket
end_response_textintegerDefault text when closing a ticket
parent_idintegerParent category
related_usersintegerRelated users
created_atintegerCreation time
updated_atintegerModification time
deleted_atintegerDeletion time
deleted_byintegerDeleter

Filtering

FieldsSupportTypeDescription
ideqintegerIdentifier
user_ideqintegerValid or not

Sort

Sort (field)Direction
idasc,desc

Limit & Offset

TypeDescription
LimitintegerNumber of records to retrieve
OffsetintegerNumber of records to skip

Example

HTTP Request

GET api/v6/ticket_categories?fields=cate_name&filtering[id]=4&limit=1&offset=0 HTTP/1.1
Host: example.getflycrm.com
Content-Type: application/json

Status

200 OK

Response

{
"data": [
{
"id": 4,
"cate_name": "Email Marketing",
}
],
"has_more": false,
"offset": 0,
"limited": 1
}