Actions41
- AccountingContact Actions
- Category Actions
- CheckAccount Actions
- CheckAccountTransaction Actions
- CommunicationWay Actions
- Contact Actions
- ContactAddress Actions
- Invoice Actions
- Part Actions
Overview
This node integrates with the sevDesk API, allowing users to manage various resources related to accounting and business operations. Specifically, for the CheckAccount resource with the Delete operation, it enables the deletion of a check account by its unique identifier. This is useful in scenarios where an outdated or incorrect check account needs to be removed from the sevDesk system to maintain accurate financial records.
Practical examples include:
- Removing a bank account that is no longer in use.
- Cleaning up test or duplicate accounts created during data import or testing phases.
Properties
| Name | Meaning |
|---|---|
| ID of Check Account | The unique numeric identifier of the check account to delete. This property is required to specify which check account should be removed. |
Output
The node outputs JSON data representing the response from the sevDesk API after attempting to delete the specified check account. Typically, this will confirm whether the deletion was successful or provide error details if it failed.
If the node supports binary data output (not indicated here), it would generally relate to file attachments or documents associated with the resource, but for this Delete operation on CheckAccount, the output is purely JSON-based.
Dependencies
- Requires an active connection to the sevDesk API.
- Needs an API authentication token or key configured in n8n credentials to authorize requests.
- The base URL for API requests is
https://my.sevdesk.de/api/v1/.
Troubleshooting
Common issues:
- Providing an invalid or non-existent check account ID will result in an error from the API indicating the resource could not be found.
- Missing or incorrect API credentials will cause authentication failures.
- Network connectivity problems can prevent the node from reaching the sevDesk API.
Error messages:
- "Resource not found" — Verify the check account ID is correct and exists.
- "Unauthorized" or "Authentication failed" — Check that the API key or token is valid and properly configured.
- "Request timeout" — Ensure stable internet connection and that sevDesk API is reachable.
Resolving these typically involves verifying input parameters, checking credential configurations, and ensuring network access.
Links and References
- sevDesk API Documentation (for detailed API endpoints and request/response formats)
- n8n Documentation (for general guidance on using API nodes and managing credentials)