Skip to main content
PUT
/
v1
/
tags
/
{tag}
Remplacer un tag
curl --request PUT \
  --url https://api.setteo.io/v1/tags/{tag} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "label": "Client gagné",
  "description": "Client converti.",
  "pipeline_stage": "won"
}
'
{
  "data": {
    "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

tag
integer
required

Identifiant du tag.

Example:

1

Body

application/json
label
string
Maximum string length: 255
Example:

"Client gagné"

description
string | null
Example:

"Client converti."

pipeline_stage
enum<string> | null
Available options:
new,
contacted,
engaged,
qualified,
call_booked,
won,
lost,
null
Example:

"won"

Response

Tag mis à jour.

data
object
required