Skip to main content

Tickets API

info

This API is not yet available. This is a documentation preview.

The Tickets API allows you to manage tickets in the CueDesk platform. You can close tickets using this API.

Close a Ticket

Here's an example of how you can close a ticket using the API. See the authentication page for how to obtain a bearer token.

Request

POST https://api.cuedesk.com/v1/tickets/{ticketUuid}/close 
Authorization: Bearer <token>
Content-Type: application/json

Response

200 OK

No Body Returned

404 Not Found

{
"message": "Resource not found.",
"details": "Ticket '899a350b-f76d-4417-9a09-06813dc1f4ff' not found"
}

401 Unauthorized

{
"message": "401 UNAUTHORIZED",
"details": "Unauthorized access."
}