Contactsv2
List contact tags
GET
/contacts/{contactId}/tagsList all tags assigned to a contact.
Path parameters
contactIdRequiredstringContact identifier (phone number in E.164 format or email, URL-encoded)
Headers
AuthorizationRequiredstringYour 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
Returns
tagsoptionalobject[]
tagsoptionalobject[]Array of object
tagoptionalstringThe tag value
created_atoptionalintegerTimestamp when the tag was added (ms since epoch)
Response codes
200List of tags
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.
curl -X GET https://api.blooio.com/v2/api/contacts/%2B15551234567/tags \ -H "Authorization: Bearer bl_live_..."{ "tags": [ { "tag": "vip", "created_at": 0 } ]}