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 create a new email address associated with a specific contact. It is useful in scenarios where you want to programmatically add or update contact information within your CRM system, such as importing contacts from another source, automating data entry, or syncing email addresses from external applications.
For example, if you have a list of contacts and their emails in a spreadsheet, you can use this node to automatically add those email addresses to the corresponding contacts in Arivo CRM without manual input.
Properties
| Name | Meaning |
|---|---|
| Contact ID | The unique identifier of the contact to which the email address will be added. |
| Email Address | The actual email address string to associate with the contact. |
| Email Type | The category of the email address; options are "Work" or "Home". |
Output
The node outputs JSON data representing the newly created email record in Arivo CRM. This typically includes details such as the email's unique ID, the associated contact ID, the email address itself, its type (work/home), and possibly metadata like creation timestamps.
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 credentials having permissions to create email records for contacts.
Troubleshooting
Common Issues:
- Invalid or missing Contact ID: Ensure the Contact ID exists in Arivo CRM and is correctly specified.
- Incorrect API credentials: Verify that the API key or authentication token is valid and has sufficient permissions.
- Network connectivity problems: Confirm that n8n can reach the Arivo CRM API endpoint.
Error Messages:
"Contact not found": The specified Contact ID does not exist. Double-check the ID."Unauthorized"or"Authentication failed": The API credentials are invalid or expired. Update the credentials."Invalid email format": The email address provided does not conform to standard email formatting rules. Correct the email address.
Resolving these errors usually involves verifying input parameters, checking API credentials, and ensuring network access.
Links and References
- Arivo CRM Official Documentation (example placeholder link)
- n8n Documentation on Credentials
- Email Address Format Standards (RFC 5322)