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 address data associated with contacts. Specifically, the Delete Address operation removes an existing address record from a contact in the CRM system. This is useful for cleaning up outdated or incorrect address information linked to contacts.
Typical use cases include:
- Removing obsolete addresses when contacts move or change locations.
- Automating cleanup of address records during data synchronization workflows.
- Managing contact data hygiene by deleting invalid or duplicate addresses.
Properties
| Name | Meaning |
|---|---|
| Contact ID | The unique identifier of the contact whose address you want to delete. |
| Address ID | The unique identifier of the specific address record to be deleted. |
Output
The output JSON contains the result of the delete operation. Typically, this will confirm whether the address was successfully deleted or provide error details if the deletion failed.
Since this operation deals with deletion, no binary data output is expected.
Example output structure (conceptual):
{
"success": true,
"message": "Address deleted successfully",
"contactId": "12345",
"addressId": "67890"
}
Or in case of failure:
{
"error": "Address not found or already deleted"
}
Dependencies
- Requires an active connection to Arivo CRM via an API key credential configured in n8n.
- The node depends on the Arivo CRM API to perform CRUD operations on address data.
- Proper permissions in Arivo CRM are necessary to delete address records.
Troubleshooting
Common issues:
- Invalid or missing Contact ID or Address ID parameters will cause the operation to fail.
- Insufficient permissions in Arivo CRM to delete addresses.
- Network or authentication errors connecting to Arivo CRM API.
Error messages and resolutions:
"Address not found": Verify that the Address ID exists and belongs to the specified Contact ID."Unauthorized"or"Authentication failed": Check that the API key credential is valid and has required access rights."Network error": Ensure network connectivity and that Arivo CRM API endpoints are reachable.
Links and References
- Arivo CRM API Documentation (example placeholder link)
- n8n documentation on API credentials setup
- General best practices for managing contact addresses in CRMs