Overview
This node manages contacts via the Clint API, specifically supporting operations like listing, getting, creating, updating, deleting contacts, and adding or removing tags from contacts. The 'Remove Tags' operation allows users to remove specified tags from a contact by providing the contact ID and a comma-separated list of tag IDs. This is useful for maintaining accurate contact metadata and managing contact categorization dynamically.
Use Case Examples
- Removing tags from a contact to update their categorization in a CRM system.
- Cleaning up outdated or incorrect tags from contacts in bulk workflows.
Properties
| Name | Meaning |
|---|---|
| Contact ID | The unique identifier of the contact from which tags will be removed. |
| Tag IDs | Comma-separated list of tag IDs to be removed from the specified contact. |
Output
JSON
success- Indicates if the tag removal operation was successful.error- Error message if the operation failed.details- Additional error details returned from the API if the operation failed.
Dependencies
- Clint API with an API token credential for authentication
Troubleshooting
- Ensure the Contact ID is valid and exists in the Clint system to avoid 'not found' errors.
- Verify that the tag IDs are correctly formatted as a comma-separated string without extra spaces.
- Check API token validity and permissions if authentication errors occur.
- Handle API rate limits or network issues that may cause request failures.
Links
- Clint API Contacts Endpoint - Official API documentation for managing contacts and tags in Clint.