- Introduction
- Staff API Overview
- Leads API Overview
- Call Logs API Overview
- Tickets API Overview
- Deals Management API Overview
- List DealsGET
- Create a DealPOST
- Update a DealPUT
- Get a Deal DetailsGET
- List Deals SourcesGET
- List Deals PipelineGET
- Add a Deal CommentPOST
- Update a Deal CommentPUT
- Add an AttachmentPOST
- Delete an AttachmentDELETE
- List a Deal ServicesGET
- Get a Deal Service DetailGET
- Add a Deal ServicePOST
- Update a Deal ServicePUT
List Ticket Statuses
GET
/ticket/status/list
Request
Authorization
Send your HTTP requests with an
Authorization
header that contains the word Basic followed by a space and a base64-encoded string {{Username}}:{{Password}}Example:
Authorization: Basic *****************
Body Params multipart/form-data
object {0}
Responses
🟢200Success
application/json
Body
data
array [object {5}]
required
ticketstatusid
string
required
name
string
required
isdefault
string
required
statuscolor
string
required
statusorder
string
required
message
string
required
Example
{
"data": [
{
"ticketstatusid": "1",
"name": "Open",
"isdefault": "1",
"statuscolor": "#34C759",
"statusorder": "1"
},
{
"ticketstatusid": "2",
"name": "In progress",
"isdefault": "1",
"statuscolor": "#E29C29",
"statusorder": "2"
},
{
"ticketstatusid": "3",
"name": "Answered",
"isdefault": "1",
"statuscolor": "#09A7B4",
"statusorder": "3"
},
{
"ticketstatusid": "4",
"name": "On Hold",
"isdefault": "1",
"statuscolor": "#756585",
"statusorder": "4"
},
{
"ticketstatusid": "5",
"name": "Closed",
"isdefault": "1",
"statuscolor": "#EF4747",
"statusorder": "5"
}
],
"message": "success"
}
🟠401Unauthorized
Modified at 2024-09-05 09:39:24