Actions40
- Company Actions
- Note Actions
- Note Relation Actions
- Opportunity Actions
- Person Actions
- Pipeline Actions
- Task Actions
- Task Relation Actions
Overview
This node integrates with the Dalil AI API to manage various CRM-related resources, including "Note Relation" (referred to as "noteTarget" internally). Specifically, for the Note Relation - Get operation, it retrieves detailed information about a specific note relation by its unique identifier. The node supports specifying the depth of nested related objects to include in the response, allowing users to fetch just the primary note relation or also its directly related objects and their relations.
Typical use cases include:
- Fetching detailed metadata and relationships of a particular note relation in a CRM system.
- Integrating note relations data into workflows for reporting, auditing, or synchronization with other systems.
- Dynamically retrieving nested relational data to understand context or dependencies of notes.
Example: Retrieve a note relation by its UUID and include direct relations (depth 1) to get a richer dataset for further processing.
Properties
Name | Meaning |
---|---|
Note Relation ID | UUID string identifying the specific note relation to retrieve. |
Depth Name or ID | Level of nested related objects to include in the response: - 0: note relation only - 1: note relation + direct relations - 2: note relation + relations + their relations |
Output
The node outputs JSON data representing the requested note relation object. The structure includes all fields of the note relation and, depending on the specified depth, may include nested related objects up to two levels deep.
The output JSON corresponds directly to the API response from Dalil AI's /rest/noteTargets/{id}
endpoint, optionally enriched with related entities based on the depth parameter.
No binary data output is produced by this operation.
Dependencies
- Requires an active connection to the Dalil AI API.
- Requires an API key credential configured in n8n for authenticating requests to Dalil AI.
- The node uses the Dalil AI REST API endpoints under
/rest/noteTargets
.
Troubleshooting
- Invalid Note Relation ID: If the provided UUID is incorrect or does not exist, the API will likely return an error indicating the resource was not found. Verify the ID is correct.
- Depth Parameter Issues: Providing an invalid depth value (outside 0, 1, 2) may cause unexpected results or errors. Use the provided options or valid expressions.
- API Authentication Errors: Ensure the API key credential is correctly set up and has sufficient permissions.
- Unexpected API Response Structure: If the API changes or returns malformed data, the node may throw errors. Check the API status and update the node if necessary.
- Network Issues: Connectivity problems can cause request failures; verify network access to the Dalil AI API.
Links and References
- Dalil AI API Documentation (generic link to n8n Dalil AI integration docs)
- n8n Expressions Documentation – for using expressions in property values such as Depth.
If you need details on other operations or resources, feel free to ask!