Actions12
Overview
This node integrates with the Wortic CRM API to manage leads, clients, calendar events, and other resources. Specifically for the Lead - Get operation, it retrieves a single lead record by its unique ID from the CRM system.
Common scenarios where this node is useful include:
- Fetching detailed information about a specific lead to display or process further in an automation workflow.
- Validating or enriching lead data before performing updates or other actions.
- Integrating lead data retrieval into multi-step workflows involving sales or marketing automation.
Example: You have a lead ID from a previous step or external source, and you want to pull all details of that lead to send a personalized email or update another system.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the lead record to retrieve. This is required to specify which lead to get. |
Output
The node outputs the retrieved lead data as JSON in the json field of the output item. The structure corresponds directly to the lead record returned by the Wortic CRM API, including all available fields for that lead.
No binary data output is produced by this operation.
Dependencies
- Requires an API key credential for authenticating with the Wortic CRM API.
- The node expects the base URL of the Wortic API to be configured in the credentials.
- HTTP POST requests are made to the API endpoint with JSON payloads specifying the action and data.
Troubleshooting
- Missing or invalid ID: If the ID property is empty or incorrect, the API will likely return an error indicating the record was not found. Ensure the ID is correct and provided.
- Authentication errors: If the API key or base URL is misconfigured or expired, authentication will fail. Verify the API key credential and endpoint URL.
- API request failures: Network issues or API downtime can cause request failures. Check connectivity and API status.
- Error messages: Errors returned from the API are passed through in the output JSON under an
errorfield if "Continue On Fail" is enabled. Review these messages for clues on what went wrong.
Links and References
- Wortic CRM API documentation (refer to your API provider's official docs)
- n8n HTTP Request node documentation for understanding request handling
- General REST API best practices for troubleshooting API calls