Actions12
Overview
This node integrates with the Wortic CRM API to manage calendar events. Specifically, the "Calendar - Get" operation retrieves a single calendar event by its unique record ID. This is useful when you need to fetch detailed information about a specific appointment or event stored in your CRM's calendar.
Practical examples include:
- Fetching details of a scheduled meeting before sending reminders.
- Retrieving event data to display in custom dashboards or reports.
- Accessing event information for synchronization with other calendar systems.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the calendar event record to retrieve. This is required to specify which event to get. |
Output
The node outputs a JSON object representing the calendar event retrieved from the Wortic CRM API. The structure corresponds directly to the API response for a single calendar event and includes all available fields such as title, description, start date, end date, and any other metadata provided by the service.
No binary data output is produced by this operation.
Example output snippet (conceptual):
{
"id": "12345",
"title": "Team Meeting",
"description": "Discuss project updates",
"start_date": "2024-07-01T10:00:00Z",
"end_date": "2024-07-01T11:00:00Z",
...
}
Dependencies
- Requires an API key credential for authenticating with the Wortic CRM API.
- The node sends HTTP POST requests to the configured API URL endpoint.
- The API URL and API key must be set up in the node credentials before use.
Troubleshooting
Common issues:
- Invalid or missing record ID will cause the API to return an error indicating the event was not found.
- Incorrect or expired API key will result in authentication errors.
- Network connectivity problems can cause request failures.
Error messages:
"error": "Record not found"— Verify that the provided ID exists in the calendar."error": "Unauthorized"— Check that the API key credential is correct and has necessary permissions.- Timeout or network errors — Ensure the API URL is reachable and there are no firewall restrictions.
To resolve these, double-check the input ID, verify credentials, and confirm network access.
Links and References
- Wortic CRM API documentation (for calendar events): [Link not provided in source]
- n8n HTTP Request node documentation: https://docs.n8n.io/nodes/n8n-nodes-base.httpRequest/