Dolibarr icon

Dolibarr

Interact with Dolibarr API

Overview

This node interacts with the Dolibarr API to retrieve details about a specific event by its ID. It is useful in scenarios where you need to fetch detailed information about an event stored in Dolibarr, such as for displaying event data in workflows, integrating event details into other systems, or automating event-related processes.

For example, you might use this node to get the details of a calendar event before sending reminders or updating related records in another application.

Properties

Name Meaning
Event ID The unique numeric identifier of the event to retrieve. This property is required and specifies which event's details will be fetched from Dolibarr.

Output

The node outputs the full response from the Dolibarr API call to get the event details. The main output is a JSON object containing all available information about the specified event, such as its title, date, description, location, and any other metadata provided by Dolibarr.

No binary data output is indicated.

Dependencies

  • Requires an active connection to the Dolibarr API.
  • Needs an API authentication token or key configured in n8n credentials to authorize requests.
  • The base URL of the Dolibarr instance must be set in the credentials configuration.

Troubleshooting

  • Common issues:

    • Invalid or missing Event ID: The node requires a valid numeric event ID; providing an incorrect or null value will cause the request to fail.
    • Authentication errors: If the API key or token is invalid or expired, the node will not be able to connect to Dolibarr.
    • Network or URL misconfiguration: Incorrect base URL or network issues can prevent successful API calls.
  • Error messages:

    • HTTP 404 Not Found: Indicates that the event with the specified ID does not exist. Verify the Event ID.
    • Authentication errors (e.g., 401 Unauthorized): Check that the API credentials are correctly configured and have sufficient permissions.
    • Timeout or connection errors: Ensure the Dolibarr server is reachable and the base URL is correct.

Links and References

Discussion