sevDesk icon

sevDesk

Consume the sevDesk API

Overview

The node integrates with the sevDesk API to perform various operations on sevDesk resources. Specifically, for the Order resource with the Get operation, it retrieves detailed information about a specific order by its unique identifier. This is useful in scenarios where you need to fetch order details for processing, reporting, or synchronization with other systems.

Practical examples include:

  • Fetching an order's data to display in a dashboard.
  • Retrieving order details before updating or sending invoices.
  • Integrating order information into external accounting or CRM systems.

Properties

Name Meaning
Order ID The unique identifier of the order to retrieve. This is a required string input.

Output

The node outputs JSON data representing the retrieved order object from the sevDesk API. The structure typically includes all relevant order details such as customer info, order items, status, dates, and totals.

If the node encounters an error (e.g., invalid Order ID), the output will contain an error field with the error message.

No binary data output is produced by this operation.

Dependencies

  • Requires an active connection to the sevDesk API via an API key credential.
  • The node uses the base URL https://my.sevdesk.de/api/ combined with the configured API version.
  • Environment configuration validation is performed before execution to ensure proper setup.

Troubleshooting

  • Common issues:

    • Invalid or missing Order ID will cause the API call to fail.
    • Network connectivity problems or incorrect API credentials will prevent successful retrieval.
    • If the API version environment variable is not set correctly, requests may fail.
  • Error messages:

    • Errors returned from the API are passed through in the output under an error property.
    • Initialization errors related to validation schemas are logged to the console but do not stop execution.
  • Resolutions:

    • Verify that the Order ID is correct and exists in sevDesk.
    • Ensure API credentials are valid and have sufficient permissions.
    • Check network connectivity and API endpoint accessibility.
    • Confirm environment variables for API version and other config are properly set.

Links and References

Discussion