BetaThe V4 API is in beta — endpoints and functionality may change.
Contactsv2

Add tags to a contact

POST/contacts/{contactId}/tags

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.

Path parameters

contactIdRequiredstring

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

Headers

AuthorizationRequiredstring

Your API key, sent as a bearer token: Authorization: Bearer <api_key>. Editing this stays in sync with the API key box on the right.

Bearer

Body parameters

JSON
tagsRequiredstring[]

Tags to add

Returns

successoptionalboolean
tags_addedoptionalstring[]

Tags that were added

Response codes

201Tags added
400Invalid request parameters
401Authentication required or invalid
404Resource not found

Sends a live request with your values and shows the real response below. Your key is stored only in this browser.

Request
curl -X POST https://api.blooio.com/v2/api/contacts/%2B15551234567/tags \  -H "Authorization: Bearer bl_live_..." \  -H "Content-Type: application/json" \  -d '{    "tags": [      "vip",      "priority"    ]  }'
Body object
Response objectexample
{  "success": true,  "tags_added": [    "vip",    "priority"  ]}