- 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 Tickets
GET
/ticket/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 *****************
Query Params
limit
string
optional
Example:
50
offset
string
optional
Example:
2
status
string
optional
Example:
0
Body Params multipart/form-data
object {0}
Responses
🟢200Success
application/json
Body
data
array [object {25}]
required
ticketid
string
optional
adminreplying
string
optional
userid
string
optional
contactid
string
optional
merged_ticket_id
null
optional
email
string
optional
name
string
optional
department
string
optional
priority
string
optional
status
string
optional
service
null
optional
ticketkey
string
optional
subject
string
optional
message
string
optional
admin
string
optional
date
string
optional
project_id
string
optional
lastreply
null
optional
clientread
string
optional
adminread
string
optional
assigned
string
optional
staff_id_replying
null
optional
cc
null
optional
tenant_ticket_id
string
optional
status_id
string
optional
page
object
required
current_page
integer
required
from
integer
required
to
integer
required
total
integer
required
per_page
integer
required
last_page
integer
required
next
integer
required
previous
integer
required
message
string
required
Example
{
"data": [
{
"ticketid": "1",
"adminreplying": "0",
"userid": "0",
"contactid": "1",
"merged_ticket_id": null,
"email": "[email protected]",
"name": "hilal khan",
"department": "0",
"priority": "0",
"status": "Open",
"service": null,
"ticketkey": "32f338d36cb5403440fe75a06b4ba78e",
"subject": "testing tticket from api DEVSTRIKER",
"message": "testing tticket from api DEVSTRIKER",
"admin": "1",
"date": "2024-08-09 16:42:35",
"project_id": "0",
"lastreply": null,
"clientread": "0",
"adminread": "0",
"assigned": "0",
"staff_id_replying": null,
"cc": null,
"tenant_ticket_id": "2493",
"status_id": "1"
}
],
"page": {
"current_page": 1,
"from": 1,
"to": 1,
"total": 1,
"per_page": 50,
"last_page": 0,
"next": -1,
"previous": 0
},
"message": "success"
}
🟠401Unauthorized
Modified at 2024-09-05 09:38:58