cURL
curl --request POST \ --url https://api.prod.getdex.com/v1/tags/ \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "tag": { "name": "<string>" } } '
{ "error": true, "data": { "tag": { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "name": "<string>", "color": "<string>", "created_at": "<string>", "updated_at": "<string>" } } }
Create a new tag with a name and optional color. Tags can then be assigned to contacts for categorization.
Use your Dex API key (e.g. dex_abc123...) as the Bearer token.
Show child attributes
Successful response
Was this page helpful?