Actions41
- Articles Actions
- Contacts Actions
- Dunnings Actions
- Invoices Actions
- Order Confirmations Actions
- Quotations Actions
- Voucher Lists Actions
- Vouchers Actions
- Countries Actions
- Files Actions
Overview
This node integrates with the Lexware API to retrieve data related to Voucher Lists. Specifically, the "Get" operation for the "Voucher Lists" resource fetches details of a single voucher list by its unique identifier. This is useful in scenarios where you need to access or process specific voucher list information within an automated workflow, such as validating vouchers, generating reports, or syncing voucher data with other systems.
Practical examples include:
- Retrieving a voucher list to verify its contents before applying discounts.
- Fetching voucher list details to update customer records or financial documents.
- Automating reporting processes that require up-to-date voucher list information.
Properties
| Name | Meaning |
|---|---|
| Voucher List ID | The unique identifier of the voucher list to retrieve. This is a required string input. |
Output
The node outputs JSON data representing the details of the requested voucher list. The structure typically includes all relevant fields returned by the Lexware API for a voucher list, such as its ID, name, associated vouchers, status, and metadata.
If the node supports binary data output (not indicated here), it would represent any files or attachments related to the voucher list, but this is not applicable based on the provided code and properties.
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 Voucher List ID being valid.
- No additional external dependencies are indicated.
Troubleshooting
Common issues:
- Invalid or missing Voucher List ID will cause the operation to fail.
- Network connectivity problems or incorrect API credentials can prevent successful API calls.
- If the specified voucher list does not exist, the API may return an error or empty response.
Error messages and resolutions:
- "Unsupported resource" — indicates the resource parameter is incorrect; ensure "voucherLists" is selected.
- API authentication errors — verify that the API key credential is correctly set up and has necessary permissions.
- Not found or invalid ID errors — double-check the Voucher List ID value for correctness.
Links and References
- Lexware API Documentation (general reference for API endpoints and data structures)
- n8n documentation on creating custom nodes for further customization guidance