Skip to main content
PUT
/
connector-tags
/
connector
/
{linkedinId}
curl -X PUT "https://api.clustr-ai.com/api/public/connector-tags/connector/john-doe" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"tag_ids": ["a1b2c3d4-...", "e5f6g7h8-..."]}'
{
  "success": true,
  "data": { "message": "Connector tags updated successfully" }
}
Replace the tags assigned to a connector.
Tags are connector-level. Setting tags on a connector affects all of that connector’s opportunities. There is no per-opportunity tag.

Path Parameters

linkedinId
string
required
The connector’s LinkedIn ID (numeric ID or public identifier)

Body

tag_ids
string[]
required
Tag UUIDs to assign (from List Tags). Replaces the connector’s existing tags. An empty array clears all tags.
curl -X PUT "https://api.clustr-ai.com/api/public/connector-tags/connector/john-doe" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"tag_ids": ["a1b2c3d4-...", "e5f6g7h8-..."]}'
{
  "success": true,
  "data": { "message": "Connector tags updated successfully" }
}