Dolibarr icon

Dolibarr

Interact with Dolibarr API

Overview

This node interacts with the Dolibarr API to retrieve detailed information about a specific event by its unique identifier. It is useful in scenarios where you need to fetch event data from Dolibarr for further processing, reporting, or integration with other systems. For example, you might use this node to get details of a calendar event to display in a dashboard or to trigger workflows based on event attributes.

Properties

Name Meaning
Event ID The unique numeric identifier of the event to retrieve from Dolibarr. This property is required.

Output

The node outputs the full JSON response from the Dolibarr API corresponding to the requested event. This typically includes all available fields describing the event such as title, date, description, location, and any custom fields defined in Dolibarr.

If the API supports it, the output may also include metadata or related linked resources, but primarily the json output contains the event's data object.

Dependencies

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

Troubleshooting

  • Missing or invalid Event ID: Ensure that the Event ID is provided and is a valid number. Without it, the node cannot query the event.
  • Authentication errors: Verify that the API credentials are correct and have sufficient permissions to access event data.
  • 404 Not Found: If the event does not exist or the ID is incorrect, the API will return a 404 error. Double-check the Event ID.
  • Network issues: Confirm that the Dolibarr API endpoint is reachable from the n8n environment.
  • Unexpected API responses: If the API changes or returns unexpected data, review the Dolibarr API documentation and update the node configuration accordingly.

Links and References

Discussion