tag_manage
Manage tags and contact tagging. • action="list": List all tags for the authenticated user. No additional fields required. • action="create": Create a new tag (or return existing if name already exists). Requires name. • action="update": Update a tag name. Requires id and name. • action="delete": Delete a tag. Requires id. • action="tag_contact": Tag a contact. Creates the tag if it doesn't exist. Requires name (the tag name) and contact_id. • action="untag_contact": Remove a tag from a contact. Requires id (the tag ID) and contact_id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | The tag ID (required for update, delete, untag_contact) | |
| name | No | Tag name (required for create and tag_contact) | |
| action | Yes | Action to perform | |
| contact_id | No | The contact ID (required for tag_contact and untag_contact) |