Update contact tags
documentedUpdate the tags for a contact.
PUT /dev/api/contacts/edit/tagsContactsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://{{$domain}}.agilecrm.com/dev/api/contacts/edit/tags" \
-X PUT \
-H "Accept : application/json" \
-H "Content-Type: application/json" \
-v -u "{{$AGILECRM_EMAIL}}:{{$AGILECRM_API_KEY}}" \
-d '{"id": "{{$contact_id}}", "tags": ["{{$tag1}}", "{{$tag2}}"]}'