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 retrieve detailed information about a specific Deal Item. The "Get" operation for the "Deal Item" resource fetches data for a single item associated with a deal, identified by both the deal's ID and the item's ID.
Typical use cases include:
- Retrieving details of a particular product or service line item within a sales deal.
- Accessing item-specific information such as quantity, price, or description in workflows that manage sales pipelines.
- Integrating deal item data into reporting or automation processes where granular deal components are needed.
For example, you might use this node to get the details of a specific item sold in a deal to update inventory or calculate commissions.
Properties
| Name | Meaning |
|---|---|
| Deal ID | The unique identifier of the deal to which the item belongs. |
| Item ID | The unique identifier of the deal item to retrieve details for. |
Output
The output is a JSON object representing the retrieved deal item. This typically includes all available fields describing the deal item, such as its identifiers, quantities, prices, descriptions, and any other metadata stored in Arivo CRM for that item.
No binary data output is indicated for this operation.
Example output structure (simplified):
{
"id": "string",
"dealId": "string",
"productId": "string",
"quantity": number,
"price": number,
"description": "string",
...
}
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 Deal ID and Item ID being valid.
Troubleshooting
- Invalid IDs: If the Deal ID or Item ID does not exist or is incorrect, the node will likely return an error indicating the item was not found. Verify the IDs before running the node.
- Authentication errors: Ensure the API key credential is correctly set up and has sufficient permissions to access deal items.
- Network issues: Connectivity problems with Arivo CRM API can cause timeouts or failures; check network status and API availability.
- Continue on Fail: If enabled, the node will continue processing subsequent items even if one fails, returning error details in the output JSON.
Links and References
- Arivo CRM API Documentation (example placeholder link)
- n8n Documentation on Credentials
- n8n Node Development Guide