Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Get the contact’s relationship to tags, response is a list of resource identifiers
Response is a list of resource identifiers
{
"data": [
{ "type": "contact_tags", "id": "123" },
{ "type": "contact_tags", "id": "456" }
]
}
The related tag resources are available using the GET api/v1/contact_tags
endpoint.
The resource identifier includes the contact tag id and type.
Example URLs: /api/v1/contact_tags/123
, /api/v1/contact_tags/456
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.