Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/vnd.api+json
Add tag relationships to contact resource using a list of resource identifiers
Request body includes a list of resource identifiers, id: CONTACT_TAG_ID
, type: "contact_tags"
.
{ "data": [{ "type": "contact_tags", "id": "456" }] }
The response body will include the updated list of tag relationships.
Example response body:
{ "data": [{ "type": "contact_tags", "id": "123" }, { "type": "contact_tags", "id": "456" }] }
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.