Get Lead Tags
/leads/:leadId/tags
Get all tags assigned to a specific lead.
Path Parameters
| Parameter | Type | Description |
|---|---|---|
leadId | string (uuid) | The lead ID to get tags for |
Example
curl https://api.getnexor.ai/api/public/leads/123e4567-e89b-12d3-a456-426614174000/tags \
-H "X-API-Key: nxr_live_your_api_key"
Responses
200 — Successful response
{
"data": [
{
"id": "123e4567-e89b-12d3-a456-426614174001",
"name": "VIP Client",
"slug": "vip-client"
}
]
}
Response Fields — Tag
| Field | Type | Description |
|---|---|---|
id | string (uuid) | Unique tag identifier |
name | string | Tag display name |
slug | string | URL-friendly tag identifier |
401 — Authentication error
See Authentication.