Actions28
- Deal Actions
- Person Actions
- Company Actions
- Activity Actions
- Note Actions
- Case Actions
- Product Actions
- Supplementary Actions
Overview
The node integrates with Didar CRM to perform various actions on different entities. Specifically, for the Product resource and the Search operation, it allows users to search for products within the Didar CRM system by providing keywords. This is useful when you want to find products matching certain terms or criteria without knowing their exact identifiers.
Typical use cases include:
- Searching for products by name or description keywords to retrieve relevant product details.
- Limiting the number of returned results to manage data volume.
- Integrating product search into workflows that require dynamic product lookup based on user input or other triggers.
Properties
| Name | Meaning |
|---|---|
| Keywords | Search term to match product fields. |
| Limit | Maximum number of results to return. Must be between 1 and 100. Defaults to 10. |
Output
The node outputs an array of JSON objects representing the products found matching the search criteria. Each object contains the product's details as stored in Didar CRM.
If binary data were involved (not indicated here), it would typically represent files or media associated with the product, but this operation focuses on JSON data output only.
Dependencies
- Requires connection to Didar CRM via an API key credential configured in n8n.
- The node depends on Didar CRM's API endpoints for product searching.
- Proper network access and authentication setup are necessary for successful API calls.
Troubleshooting
- No results returned: Check if the "Keywords" property is correctly set and matches existing product data. Also verify the API credentials and connectivity.
- API authentication errors: Ensure the API key credential is valid and has sufficient permissions.
- Limit value issues: The limit must be between 1 and 100; values outside this range may cause errors.
- Unexpected errors: Review error messages from Didar CRM API responses for hints, such as rate limiting or malformed requests.
Links and References
- Didar CRM official documentation (replace with actual URL)
- n8n documentation on creating custom nodes
- General API integration best practices in n8n workflows