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 data related to various resources, including persons. Specifically, the Person - Get operation retrieves detailed information about a single person in the CRM by their unique identifier. This is useful when you want to fetch up-to-date contact details or profile information for a specific individual stored in Arivo CRM.
Common scenarios:
- Fetching a person's details before sending a personalized email.
- Retrieving contact information to update another system or database.
- Using the person's data as part of a workflow that requires validation or enrichment.
Example:
You have a workflow triggered by a form submission containing a Person ID. The node uses this ID to get the person's full profile from Arivo CRM and then uses that data downstream for further processing or notifications.
Properties
| Name | Meaning |
|---|---|
| Person ID | The unique identifier of the person to retrieve from Arivo CRM. This is a required string input. |
Output
The node outputs a JSON object representing the person's data retrieved from Arivo CRM. The structure typically includes all available fields for the person such as name, contact details, company association, custom fields, and other metadata stored in the CRM.
If multiple items are processed, each output item corresponds to one input item paired accordingly.
No binary data output is indicated for 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 Person ID being valid.
- Proper permissions in Arivo CRM are necessary to read person data.
Troubleshooting
- Invalid Person ID: If the Person ID does not exist or is malformed, the node may throw an error indicating the person was not found. Verify the ID correctness.
- Authentication errors: Ensure the API key credential is correctly set up and has sufficient permissions.
- Network issues: Connectivity problems with Arivo CRM API can cause timeouts or failures.
- Continue On Fail: If enabled, errors for individual items will be returned as JSON with an
errorfield instead of stopping the entire workflow.
Links and References
- Arivo CRM Official Documentation (example link, replace with actual)
- n8n documentation on Using Credentials
- n8n community forums for troubleshooting and examples