Actions98
- Contact Actions
- AccountingContact Actions
- Category Actions
- CheckAccount Actions
- CheckAccountTransaction Actions
- CommunicationWay Actions
- Contact Address Actions
- Contact Custom Field Actions
- Contact Custom Field Setting Actions
- Credit Note Actions
- Credit Note Po Actions
- Export Actions
- Update Export Config
- Export DATEV (Deprecated)
- Start DATEV CSV Zip Export
- Start DATEV XML Zip Export
- Generate Download Hash
- Get Progress
- Get Job Download Info
- Export Invoice as CSV
- Export Invoice as Zip
- Export Credit Note as CSV
- Export Voucher as CSV
- Export Voucher as Zip
- Export Transaction as CSV
- Export Contact as CSV
- Part Actions
- Invoice Actions
- Invoice Position Actions
- Order Actions
- Order Position Actions
- Report Actions
- Tag Actions
- Voucher Actions
- VoucherPo Actions
Overview
This node integrates with the sevDesk API to manage various resources, including Contact Addresses. Specifically, the "Delete" operation for the Contact Address resource allows users to remove a contact address from their sevDesk account by specifying its unique ID. This is useful in scenarios where outdated or incorrect contact addresses need to be cleaned up or removed to maintain accurate records.
Practical examples include:
- Automatically deleting a contact address when a customer record is deleted.
- Cleaning up test or temporary contact addresses created during data imports or integrations.
Properties
| Name | Meaning |
|---|---|
| Contact Address ID | The unique identifier of the contact address to delete. This is a required string value. |
Output
The node outputs JSON data representing the result of the delete operation. Typically, this will include confirmation that the contact address was successfully deleted or an error message if the deletion failed.
If the operation fails and "Continue On Fail" is enabled, the output JSON will contain an error field with the error message related to the failure.
No binary data output is involved in this operation.
Dependencies
- Requires an API key credential for authenticating with the sevDesk API.
- The node uses the base URL
https://my.sevdesk.de/api/combined with the API version specified in credentials. - Environment configuration validation is performed before execution to ensure necessary environment variables or settings are correctly set.
Troubleshooting
Common issues:
- Providing an invalid or non-existent Contact Address ID will cause the API to return an error.
- Missing or incorrect API authentication credentials will prevent successful communication with the sevDesk API.
- Network connectivity issues can cause request failures.
Error messages:
- Errors returned from the API will be included in the output JSON under the
errorfield if "Continue On Fail" is enabled. - Common errors include "Contact Address not found" or authentication errors.
- Errors returned from the API will be included in the output JSON under the
Resolution tips:
- Verify the Contact Address ID is correct and exists in sevDesk.
- Ensure the API key credential is valid and has sufficient permissions.
- Check network connectivity and API endpoint accessibility.
- Enable "Continue On Fail" to handle errors gracefully within workflows.
Links and References
- sevDesk API Documentation (for detailed API endpoints and parameters)
- n8n documentation on creating custom nodes