Arivo CRM icon

Arivo CRM

Create and edit data in Arivo CRM

Overview

The node integrates with Arivo CRM to manage product categories. Specifically, the "Get Many" operation for the "Product Category" resource retrieves multiple product category records from Arivo CRM based on optional filters and sorting options.

This operation is useful when you want to fetch a list of product categories for reporting, synchronization, or further processing in your workflow. For example, you might use it to:

  • Retrieve all product categories to populate a dropdown menu in another system.
  • Filter product categories by code or name to find specific groups.
  • Sort categories by creation date or name to display them in a particular order.

Properties

Name Meaning
Return All Whether to return all matching product categories or limit the number of results returned.
Limit Maximum number of product categories to return if "Return All" is false (minimum 1, default 50).
Filters Collection of filters to narrow down results:
  Code Filter product categories by their exact code.
  Name Filter product categories by name, supports partial matches.
Options Additional options for sorting the results:
  Sort By Field to sort results by: Code, Created At, Name, or Updated At.
  Sort Order Sort direction: Ascending or Descending.

Output

The output is an array of JSON objects, each representing a product category record retrieved from Arivo CRM. Each object contains the fields of a product category such as its code, name, creation date, update date, and any other relevant metadata provided by the API.

The output items are paired with the input item index they correspond to, allowing traceability in workflows.

No binary data is produced by this operation.

Dependencies

  • Requires an active connection to Arivo CRM via an API key credential configured in n8n.
  • The node depends on Arivo CRM's API endpoints for product category management.
  • Proper permissions in Arivo CRM are necessary to read product category data.

Troubleshooting

  • Common Issues:

    • Authentication failures due to invalid or missing API credentials.
    • No results returned if filters do not match any product categories.
    • Exceeding API rate limits if requesting too many records without pagination.
  • Error Messages:

    • Errors related to authentication typically indicate issues with the API key setup.
    • Validation errors may occur if filter values are malformed.
    • Network or timeout errors suggest connectivity problems with Arivo CRM.
  • Resolutions:

    • Verify that the API key credential is correctly configured and has sufficient permissions.
    • Adjust filters to ensure they match existing product categories.
    • Use the "Return All" option judiciously or set reasonable limits to avoid large data requests.

Links and References

Discussion