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

Update tags

PATCH
/api/v1/contacts/{id}/tags
This endpoint allows you to perform an update only tags on a contact.

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

🟠400
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH 'https://apigw.klinkcx.com/api/v1/contacts//tags' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "actionType": "MERGE",
    "tags": [
        "vip",
        "new"
    ]
}'
Response Response Example
200 - Success
{
  "status": "success",
  "message": "Contact tags updated successfully",
  "data": null
}
Modified at 2026-01-29 05:24:26
Previous
Fetch Contact Groups
Next
Listing
Built with