Actions31
Overview
The node integrates with the Steuerboard API to manage various resources, including Admin Users. Specifically, the "Delete" operation for the "Admin User" resource allows users to delete an accountant user by specifying their unique User ID. This is useful in scenarios where you need to remove access or clean up user accounts within Steuerboard, such as when an accountant leaves a company or no longer requires access.
Practical example: An accounting firm automates its user management by deleting former employees' admin user accounts from Steuerboard directly through n8n workflows, ensuring security and compliance without manual intervention.
Properties
| Name | Meaning |
|---|---|
| User ID | The ID of the accountant user to delete |
Output
The node outputs JSON data representing the response from the Steuerboard API after attempting to delete the specified admin user. Typically, this will include confirmation of deletion or error details if the operation failed.
No binary data output is involved in this operation.
Dependencies
- Requires an API key credential for authenticating with the Steuerboard API.
- The base URL for the Steuerboard API must be configured in the node's credentials.
- Internet connectivity to reach the Steuerboard API endpoint.
Troubleshooting
Common issues:
- Providing an invalid or non-existent User ID will result in an error response from the API.
- Missing or incorrect API authentication credentials will cause authorization failures.
- Network connectivity problems can prevent the node from reaching the Steuerboard API.
Error messages and resolutions:
- "User not found" — Verify that the User ID is correct and exists in Steuerboard.
- "Unauthorized" or "Authentication failed" — Check that the API key credential is correctly set up and has sufficient permissions.
- Timeout or network errors — Ensure stable internet connection and that the API endpoint is reachable.
Links and References
- Steuerboard API Documentation (example link; replace with actual)
- n8n Documentation on Creating Custom Nodes