- 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
Get Ticket Details
GET
/ticket/{ticket_id}
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
object
required
ticketid
string
required
adminreplying
string
required
subject
string
required
message
string
required
admin
string
required
date
string
required
lastreply
null
required
status_id
string
required
status
string
required
replies
array
required
message
string
required
Example
{
"data": {
"ticketid": "1",
"adminreplying": "0",
"subject": "testing tticket from api DEVSTRIKER",
"message": "testing tticket from api DEVSTRIKER",
"admin": "1",
"date": "2024-08-09 16:42:35",
"lastreply": null,
"status_id": "1",
"status": "Open",
"replies": []
},
"message": "success"
}
🟠404Not found
🟠401Unauthorized
Modified at 2024-09-05 09:39:12