ActiveCampaign: get contact's tag names

Hello folks,

I’m trying to find an easy way to get a Contact details, including the list of tags names.
So far:

  • the “Get a contact” module returns the contact tag API link
  • the “Make API call” module returns an array with tag IDs

I know that I can reiterate a module with an API call to get the name of the tag by ID, but I think it’s very inefficient in terms of operations used.

Zapier, in comparison, returns the tags names with a Find Contact step.

I don’t understand why Make doesn’t give that.

Any suggestion?

Thanks
Daniele

Having the same issue. Do you know how to make the api call to get the tag name?

Hi Mark,

I eventually did this:

  • AC “Make an API call” module with endpoint: /contacts/{{id}}/contactTags
  • An Iterator for the array {{5.body.contactTags}}
  • Another API call with endpoint /contactTags/{{8.id}}/tag
  • An Array Aggregator for the Body of the previous module

I hope it helps

2 Likes