Discussions
Add a customer tag through Make.com's 'Make an API Call' module
Hi. I'm trying to add a tag through an API call via Make.com.
I've tried the API call at https://developers.myclickfunnels.com/reference/createcontactsappliedtags.
The call works there.
However, I'm having trouble "translating" the call to the Make.com environment.
The working API-call:
curl --request POST
--url https://myworkspace.myclickfunnels.com/api/v2/contacts/350484962/applied_tags
--header 'accept: application/json'
--header 'authorization: Bearer XXX'
--header 'content-type: application/json'
--data '
{
"contacts_applied_tag": {
"tag_id": 295012
}
}
'
However, I'm having troube "translating" the call to the Make.com environment. Please, see this image link for the current non-working version: https://ibb.co/Y78SPVhc
How should the same API call be expressed in the Make.com module?