Actions27
- Accounting Export Actions
- Contract Actions
- Customer Actions
- Invoice Actions
- Metered Usage Actions
- Order Actions
- Payment Actions
- Report Actions
Overview
This node provides integration with the Billwerk platform, specifically for the "Accounting Export" resource and its "Get Download Link" operation. It allows users to retrieve a download link for a specific accounting export by providing its ID. This is useful in scenarios where you need to automate the retrieval of exported accounting data from Billwerk for further processing, archiving, or sharing with external systems.
Practical examples:
- Automatically fetch the latest accounting export file link after a scheduled export job.
- Integrate with cloud storage or email nodes to distribute the export file to stakeholders.
- Use in workflows that require periodic financial reconciliation or reporting.
Properties
| Name | Type | Meaning |
|---|---|---|
| Accounting Export ID | String | The unique identifier of the accounting export for which you want to get the download link. |
Output
The output will be a JSON object containing the result of the "Get Download Link" operation. While the exact structure depends on the Billwerk API response, it typically includes:
{
"downloadLink": "https://api.billwerk.com/accountingExports/12345/download",
// ...other possible metadata fields
}
- downloadLink: A URL string pointing to the downloadable file for the specified accounting export.
Dependencies
- External Service: Requires access to the Billwerk API.
- API Credentials: You must configure valid Billwerk API credentials (
billwerkApi) in n8n. - n8n Configuration: No additional environment variables are required beyond standard credential setup.
Troubleshooting
- Invalid Accounting Export ID: If an incorrect or non-existent ID is provided, the node may return an error such as
Resource not foundor similar. Double-check the ID value. - Authentication Errors: If API credentials are missing or invalid, errors like
401 Unauthorizedor403 Forbiddenmay occur. Ensure your credentials are correctly set up in n8n. - Network Issues: Connectivity problems between n8n and Billwerk can cause timeouts or connection errors. Verify network access and firewall settings.
- API Rate Limits: Excessive requests may trigger rate limiting by Billwerk. If you see errors related to rate limits, consider adding delays or reducing request frequency.