Lexware icon

Lexware

Interact with the Lexware API

Overview

This node integrates with the Lexware API to manage various business-related resources, including Order Confirmations. Specifically, for the Order Confirmations - Delete operation, it allows users to delete an existing order confirmation by specifying its unique identifier. This is useful in scenarios where an order confirmation was created in error or needs to be removed from the system for data cleanup or correction purposes.

Practical examples:

  • Automatically deleting order confirmations that are canceled or invalidated.
  • Cleaning up test or duplicate order confirmations during data synchronization processes.

Properties

Name Meaning
Order Confirmation ID The unique identifier of the order confirmation to delete. This is a required string.

Output

The node outputs JSON data representing the result of the delete operation on the specified order confirmation. Typically, this will include confirmation of successful deletion or details about the deleted resource. If the API returns any metadata or status messages, those will also be included in the output JSON.

No binary data output is expected for this operation.

Dependencies

  • Requires an active connection to the Lexware API via an API key credential configured in n8n.
  • The node depends on the Lexware API being accessible and the provided credentials having sufficient permissions to delete order confirmations.

Troubleshooting

  • Common issues:

    • Invalid or missing Order Confirmation ID: Ensure the ID is correctly provided and exists in the Lexware system.
    • Authentication errors: Verify that the API key credential is valid and has the necessary permissions.
    • Network or API downtime: Check connectivity and Lexware service status.
  • Common error messages:

    • "Unsupported resource": Occurs if the resource parameter is incorrect; ensure "orderConfirmations" is selected.
    • API errors indicating "not found" or "cannot delete": Usually means the specified Order Confirmation ID does not exist or cannot be deleted due to business rules.

To resolve these, double-check input parameters, credentials, and consult Lexware API documentation for specific error codes.

Links and References

Discussion