Skip to main content
POST
/
v1
/
leads
/
{lead}
/
tags
Ajouter un tag au prospect
curl --request POST \
  --url https://api.setteo.io/v1/leads/{lead}/tags \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "tag_id": 1
}'
{
  "data": {
    "id": 10,
    "lead_id": 123,
    "tag_id": 1,
    "created_at": "2026-07-08T12:00:00Z",
    "updated_at": "2026-07-08T12:00:00Z",
    "tag": {
      "id": 1,
      "label": "Prospect chaud",
      "description": "Prospect prêt à réserver un appel.",
      "pipeline_stage": "qualified",
      "created_at": "2026-07-08T12:00:00Z",
      "updated_at": "2026-07-08T12:00:00Z"
    }
  }
}

Authorizations

Authorization
string
header
required

Token API généré depuis votre espace de travail Setteo.

Path Parameters

lead
integer
required

Identifiant du prospect.

Example:

1

Body

application/json
tag_id
integer
required
Example:

1

Response

Association existante.

data
object
required