EspoCRM icon

EspoCRM

Interact with EspoCRM API to manage accounts, contacts, leads, and opportunities. Create, read, update and delete CRM records.

Overview

This node is designed to interact with an "Opportunity" resource, specifically to retrieve details of a single opportunity by its unique identifier. It is useful in scenarios where you need to fetch detailed information about a specific sales opportunity from a CRM system, for example, to display or process the opportunity data further in your workflow.

A practical example would be: after receiving a webhook notification about an opportunity update, you use this node to get the full details of that opportunity to decide on next steps like sending notifications or updating other systems.

Properties

Name Meaning
Opportunity ID The unique identifier of the opportunity to retrieve. This is a required string input.

Output

The node outputs JSON data representing the retrieved opportunity's details. The structure typically includes all fields related to the opportunity as stored in the CRM, such as name, status, value, associated contacts, and dates. There is no indication that binary data is output by this node.

Dependencies

  • Requires connection to the CRM system where opportunities are managed.
  • Needs an API key or authentication token configured in n8n to authorize requests to the CRM.
  • The node relies on internal operation execution logic imported from bundled dependencies.

Troubleshooting

  • Missing or invalid Opportunity ID: The node requires a valid opportunity ID; ensure this is provided and correctly formatted.
  • Authentication errors: If the API credentials are missing or incorrect, the node will fail to retrieve data. Verify the API key or authentication token configuration.
  • Network or API errors: Connectivity issues or API downtime can cause failures. Check network access and CRM service status.
  • Unexpected response structure: If the CRM API changes, the node might not parse the response correctly. Updating the node or checking for updates may help.

Links and References

Discussion