Skip to main content
POST
/
blogs
/
site
/
contact
/
tags
Add Tags to Contact
curl --request POST \
  --url https://services.leadconnectorhq.com/blogs/site/contact/tags \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "contactId": "c6M7RffOdIHwJfaaTMKc",
  "tags": [
    "game",
    "sports",
    "entertainment"
  ]
}
'
{
  "success": true,
  "message": "Tags added successfully",
  "contactId": "c6M7RffOdIHwJfaaTMKc",
  "data": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
contactId
string
required

Contact ID to add tags to

Example:

"c6M7RffOdIHwJfaaTMKc"

tags
string[]
required

Array of tags to add to the contact

Example:
["game", "sports", "entertainment"]

Response

Tags added successfully to the contact

success
boolean
required

Whether the operation was successful

Example:

true

message
string
required

Response message

Example:

"Tags added successfully"

contactId
string
required

Contact ID that was updated

Example:

"c6M7RffOdIHwJfaaTMKc"

data
object

Response data from the contact API

Last modified on March 4, 2026