Sign in

Manage tags

documented

Add or remove tags on multiple contacts (personal or team context).

POST /api/v1/contacts.manageTagsContactsno implementation yet0 runs
No 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://api.contactsplus.com/api/v1/contacts.manageTags" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{ "contactIds": [ "{{$contact_id}}" ], "addTagIds": [ "{{$tag_id}}" ], "removeTagIds": [ "{{$remove_tag_id}}" ], "teamId": "{{$team_id}}" }'