Actions68
- Email Actions
- File Actions
- Note Actions
- Product Category Actions
- Task Actions
- Address Actions
- Company Actions
- Custom Record Actions
- Deal Actions
- Deal Item Actions
- Person Actions
- Phone Actions
- Product Actions
Overview
This node integrates with Arivo CRM to manage email records associated with contacts. Specifically, the Delete Email operation removes an existing email entry from the CRM database. This is useful for cleaning up outdated or incorrect email addresses linked to contacts.
Typical use cases include:
- Automating the removal of obsolete email addresses when contacts are updated.
- Synchronizing email data by deleting emails that no longer exist in external systems.
- Maintaining data hygiene by programmatically deleting invalid or bounced email entries.
Properties
| Name | Meaning |
|---|---|
| Contact ID | The unique identifier of the contact whose email you want to delete. |
| Email ID | The unique identifier of the email record to be deleted. |
Output
The node outputs a JSON object representing the result of the delete operation. Typically, this will confirm whether the deletion was successful or provide details about the deleted email record. The exact structure depends on the API response but generally includes status information and identifiers.
No binary data output is involved in this operation.
Dependencies
- Requires an active connection to Arivo CRM via an API key credential configured in n8n.
- The node depends on the Arivo CRM API being accessible and the provided Contact ID and Email ID being valid within that system.
Troubleshooting
Common Issues:
- Invalid or missing Contact ID or Email ID parameters will cause the operation to fail.
- Network connectivity problems or incorrect API credentials can prevent successful communication with Arivo CRM.
- Attempting to delete an email that does not exist or is already deleted may return an error.
Error Messages:
- Errors related to authentication usually indicate misconfigured or expired API credentials; verify and update them as needed.
- "Not Found" errors suggest the specified Contact ID or Email ID does not exist; double-check these values.
- Rate limiting or server errors from Arivo CRM require retrying after some time or contacting support.
Links and References
- Arivo CRM Official Documentation (example placeholder)
- n8n Documentation on Creating Custom Nodes