Support

Get Support Tickets

get
/support-ticket

This API retrieves a list of support tickets based on the provided query parameters.

Query parameters
limitnumberOptional

Limit the number of results.

Example: 10
offsetnumberOptional

The offset from where to start the results.

Example: 0
keywordstringOptional

Search keyword for filtering tickets.

Example: refund
countbooleanOptional

Flag to count the number of tickets matching the query.

Example: true
Header parameters
AuthorizationstringRequired

Bearer token for authentication.

Responses
200

Successfully retrieved the support tickets

application/json
get
/support-ticket

Get Ticket Details

get
/support-ticket/{id}

This API retrieves details of a specific support ticket based on the provided ticket ID.

Path parameters
idintegerRequired

Ticket ID

Example: 123
Header parameters
AuthorizationstringRequired

Bearer token for authentication.

Responses
200

Successfully retrieved the ticket details

application/json
get
/support-ticket/{id}

Add Message and Attachments to Ticket

post
/support-ticket/{id}

This API allows users to add a new message and attachments to an existing support ticket based on the provided ticket ID.

Path parameters
idintegerRequired

Ticket ID

Example: 123
Header parameters
AuthorizationstringRequired

Bearer token for authentication.

Body
messagestringOptionalExample: Can you provide an update on my request?
Responses
200

Successfully added message and attachments to the ticket

application/json
post
/support-ticket/{id}

Update Ticket Status

put
/support-ticket/{id}

This API allows users to update the status of an existing support ticket based on the provided ticket ID.

Path parameters
idintegerRequired

Ticket ID

Example: 123
Header parameters
AuthorizationstringRequired

Bearer token for authentication.

Body
statusintegerOptionalExample: 1
Responses
200

Successfully updated ticket status

application/json
put
/support-ticket/{id}

Get Ticket Logs

get
/support-ticket/ticket-logs

This API retrieves a list of ticket logs based on the provided query parameters.

Query parameters
limitintegerOptional

The number of logs to retrieve.

Example: 10
offsetintegerOptional

The offset for pagination.

Example: 0
countintegerOptional

The total count of logs (if you want just the count of records).

Example: 0
Header parameters
AuthorizationstringRequired

Bearer token for authentication.

Responses
200

Successfully retrieved ticket logs

application/json
get
/support-ticket/ticket-logs

Last updated