Cloodo CRM icon

Cloodo CRM

Get data from Cloodo API

Overview

The node integrates with the Cloodo CRM API to retrieve multiple client records. It is designed to fetch a paginated list of clients, optionally filtered and sorted by various criteria such as search terms and date ranges. This node is useful in scenarios where you want to synchronize client data from Cloodo CRM into n8n workflows, perform batch processing on client lists, or generate reports based on client information.

Practical examples include:

  • Importing all clients created within a specific date range for marketing campaigns.
  • Searching clients by name or other attributes to trigger follow-up actions.
  • Sorting clients by creation date ascending or descending to prioritize recent or older clients.

Properties

Name Meaning
Page The page number of the client list to retrieve (for pagination).
Additional Fields A collection of optional filters and sorting options:
- Search Text to search clients by keyword or lead attribute.
- Sort Order of results, either "desc" (descending) or "asc" (ascending).
- From Date Start date to filter clients created or updated from this date (format expected by API).
- To Date End date to filter clients created or updated up to this date (format expected by API).

Output

The node outputs JSON data containing an array of client objects retrieved from the Cloodo CRM API. Each client object includes details as provided by the API, such as client identifiers, names, contact information, and any other fields supported by the API response.

If binary data were involved (e.g., attachments), it would be included in the binary output field, but this node focuses on JSON client data only.

Dependencies

  • Requires an active connection to the Cloodo CRM API.
  • Needs an API authentication token or key configured in n8n credentials to authorize requests.
  • The base URL for API requests is https://erp-amz.cloodo.com/v4/.

Troubleshooting

  • Empty Results: Ensure that the page number and filters are set correctly. If no clients match the search or date filters, the result will be empty.
  • Authentication Errors: Verify that the API key or token credential is valid and has sufficient permissions.
  • Invalid Date Format: The From Date and To Date must be in the format accepted by the API; otherwise, the request may fail or return no results.
  • Rate Limits: If many pages are requested rapidly, the API might throttle requests. Implement delays or handle rate limit errors gracefully.
  • Sorting Issues: Only "asc" or "desc" are valid values for the sort property; other values may cause errors.

Links and References

Discussion