Wortic icon

Wortic

Interact with Wortic CRM API - Complete automation for leads, clients, projects, invoices, support tickets and calendar events

Actions12

Overview

This node integrates with the Wortic CRM API to manage calendar events. Specifically, the "Create" operation under the "Calendar" resource allows users to create new calendar events by specifying details such as title, description, start date, and end date.

Common scenarios where this node is beneficial include:

  • Automating event scheduling in a CRM system.
  • Creating appointments or meetings programmatically based on workflow triggers.
  • Synchronizing external data sources with Wortic CRM calendar events.

For example, you could use this node to automatically add follow-up meetings for new clients or schedule project milestones as calendar events.

Properties

Name Meaning
Title The title of the calendar event.
Description A description or notes about the event.
Start Date The starting date and time of the event (date-time format).
End Date The ending date and time of the event (date-time format).

Output

The node outputs JSON data representing the response from the Wortic CRM API after creating the calendar event. This typically includes details of the newly created event such as its ID and other metadata returned by the API.

No binary data output is produced by this node.

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.
  • Proper configuration of the API URL and API key in the node credentials is necessary.

Troubleshooting

  • Common issues:

    • Missing required fields like Title, Start Date, or End Date will cause errors.
    • Invalid date formats for Start Date or End Date may result in API rejections.
    • Incorrect or expired API keys will lead to authentication failures.
    • Network connectivity problems can prevent successful API calls.
  • Error messages:

    • Authentication errors usually indicate invalid or missing API credentials; verify and update them.
    • Validation errors from the API often specify which field is incorrect or missing; ensure all required properties are correctly set.
    • If the node throws an error but continueOnFail is enabled, the error message will be included in the output JSON under an error property.

Links and References

  • Wortic CRM official API documentation (refer to their calendar events section)
  • n8n HTTP Request node documentation for understanding request structure and error handling

Discussion