Get contact tags

Continuing the discussion from Missing API call to list Tags on Contact?:

I have the same question, was this ever answered? (Get contact tags)

I needed it too… i didn’t find any way to do it using API v3 so i had to fall back on API v1

if you retrieve your contacts using API v1 the response will return a list of all the tags assigned to the contact

I hope they will develop something similar in API v3 soon

The response of a GET /api/3/contacts/{contactID} contains the contact.links parameter with a list of subresource available for the contact.

So, if you like to obtain the tags of a contact you have to send this request:
GET /api/3/contacts/{contactID}/contactTags

1 Like