Blooio API Reference
Contacts

Add tags to a contact

Add one or more tags to a contact. If a tag already exists on the contact, it is re-activated (idempotent). Tags are free-form strings.

POST
/contacts/{contactId}/tags

Authorization

BearerAuth
AuthorizationBearer <token>

API key authentication. Use your API key as the bearer token.

In: header

Path Parameters

contactId*string

Contact identifier (phone number in E.164 format or email, URL-encoded)

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://backend.blooio.com/v2/api/contacts/%2B15551234567/tags" \  -H "Content-Type: application/json" \  -d '{    "tags": [      "vip",      "priority"    ]  }'
{
  "success": true,
  "tags_added": [
    "vip",
    "priority"
  ]
}
{
  "error": "string",
  "status": 0
}
{
  "error": "string",
  "status": 0
}
{
  "error": "string",
  "status": 0
}