Cloodo CRM icon

Cloodo CRM

Get data from Cloodo API

Overview

This node integrates with the Cloodo CRM API to manage various CRM-related resources, including Lead Sources. Specifically, for the "Lead Source" resource and the "Creat Leads Source" operation, it allows users to create new lead source entries in the Cloodo system. This is useful for organizations that want to track where their leads originate from by categorizing them under different sources.

Common scenarios include:

  • Adding a new marketing channel or campaign as a lead source.
  • Integrating external lead generation platforms by creating corresponding lead sources.
  • Automating lead source management within workflows to keep CRM data up-to-date.

Example: Automatically create a new lead source when a new advertising campaign is launched, so incoming leads can be properly attributed.

Properties

Name Meaning
Type Leads Source A JSON object representing the details of the lead source to create or update.

The property "Type Leads Source" expects a JSON input describing the lead source's attributes. The exact structure depends on the Cloodo API schema but typically includes fields like name, description, or other metadata relevant to a lead source.

Output

The node outputs JSON data representing the response from the Cloodo API after creating the lead source. This usually contains the newly created lead source's details such as its unique ID, name, and any other properties returned by the API.

If the node supports binary data output (not indicated here), it would typically represent attachments or files related to the lead source, but this is not evident from the provided code.

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/.
  • The node uses standard HTTP headers for JSON content type.

Troubleshooting

  • Authentication errors: Ensure the API key or token credential is correctly set up and has sufficient permissions.
  • Invalid JSON input: The "Type Leads Source" property must be valid JSON; malformed input will cause request failures.
  • API endpoint issues: If the Cloodo API changes or is unavailable, the node may fail to create lead sources.
  • Operation name sensitivity: The operation name is "Creat" (likely a typo for "Create")—using the exact spelling is necessary due to static configuration.

Links and References

Discussion