Blog
Github
  1. Ticket
  • Getting Started
    • Introduction
    • Quickstart
    • Authentication
    • Status codes
  • Webhook
    • Webhook Setup
    • Webhook Events and Schema
  • API Reference
    • Contact
      • Listing
      • Create
      • Filter By SocialPlatformId
      • Form Fields
      • Detail
      • Update
      • Delete
      • Fetch Contact Groups
      • Update tags
    • Tag
      • Listing
    • Channel
      • Listing
      • Create
    • Ticket
      • Listing
        GET
      • Create
        POST
      • Filter by Contact ID
        GET
      • Form Fields
        GET
      • Update
        PATCH
      • Update status
        PUT
    • Category
      • Listing
    • CxLog
      • Listing
    • Message
      • Send message
Blog
Github
  1. Ticket

Update status

PUT
/api/v1/tickets/{id}/status
This endpoint allows you to update the status of an existing ticket by its ID.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Body Params application/json

Examples

Responses

🟢200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://apigw.klinkcx.com/api/v1/tickets//status' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "status": "string"
}'
Response Response Example
{
  "success": true,
  "message": "Ticket status updated successfully"
}
Modified at 2026-01-09 04:31:29
Previous
Update
Next
Listing
Built with