Skip to main content
DELETE
/
contacts
/
{contactId}
/
tags
Remove Tags
curl --request DELETE \
  --url https://services.leadconnectorhq.com/contacts/{contactId}/tags \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'Version: <version>' \
  --data '
{
  "tags": [
    "minim",
    "velit magna"
  ]
}
'
{
  "tags": [
    "minim",
    "velit magna"
  ]
}

Authorizations

Authorization
string
header
required

Use the Access Token generated with user type as Sub-Account (OR) Private Integration Token of Sub-Account.

Headers

Version
enum<string>
required

API Version

Available options:
2021-07-28

Path Parameters

contactId
string
required

Contact Id

Example:

"sx6wyHhbFdRXh302LLNR"

Body

application/json
tags
string[]
required
Example:
["minim", "velit magna"]

Response

Successful response

tags
string[]
Example:
["minim", "velit magna"]
Last modified on March 4, 2026