Ticket
The "Ticket" section comprises endpoints for creating, deleting, and managing tickets for users. This section empowers users to initiate, remove, and efficiently handle support tickets, ensuring effective communication and issue resolution with the support team.
Create ticket
POST
{{BASE_URL}}/api/tickets
Create a ticket for the support team.
Headers
Authorization*
String
Bearer Token
Request Body
content*
String
message
subject*
String
subject
files*
[String]
[123456] | []
Get tickets
GET
{{BASE_URL}}/api/tickets
Get all the tickets that the customer has created.
Headers
Authorization*
String
Bearer Token
Get ticket
GET
{{BASE_URL}}/api/tickets/{id}
Get information on a specific ticket.
Path Parameters
id*
String
Ticket ID (1990418667)
Headers
Authorization*
String
Bearer Token
Create nested
POST
{{BASE_URL}}/api/tickets/{id}
Add another ticket to an already created ticket.
Path Parameters
id*
String
Ticket ID (1990418667)
Headers
Authorization*
String
Bearer Token
Request Body
content*
String
message
subject*
String
subject
files*
[String]
[123456] | []
Close ticket
DELETE
{{BASE_URL}}/api/tickets/{id}
Close a specific ticket.
Path Parameters
id*
String
Ticket ID (1990418667)
Headers
Authorization*
String
Bearer Token
Last updated