Skip to main content
PATCH
/
lead
/
tag
Add Tag to Lead
curl --request PATCH \
  --url https://api.plura.ai/v1/lead/tag \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "lead_id": "307fc241-8398-4740-8122-cf6a59f3b86e",
  "tag": "High_Priority"
}
'
{
  "status": "success",
  "lead_id": "<string>",
  "tag": "<string>",
  "message": "Tag added successfully"
}

Documentation Index

Fetch the complete documentation index at: https://docs.plura.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key from Settings → API Keys in your workspace

Body

application/json
lead_id
string
required

UUID of the lead to tag

Example:

"307fc241-8398-4740-8122-cf6a59f3b86e"

tag
string
required

Tag name. Use underscores for multi-word tags.

Example:

"High_Priority"

Response

Tag added successfully

status
string
Example:

"success"

lead_id
string
tag
string
message
string
Example:

"Tag added successfully"