Actions31
- Option Set Actions
- Public Query Actions
- Record Actions
- Role Actions
- Workflow Actions
- Worksheet Actions
Overview
This node interacts with the HAP (Hyper Application Platform) API to manage worksheets. Specifically, the "Delete" operation under the "Worksheet" resource allows users to delete an existing worksheet by specifying its unique identifier. This is useful in scenarios where obsolete or unwanted worksheets need to be removed from the platform to maintain data hygiene or reorganize workspace content.
Practical examples include:
- Automatically deleting temporary worksheets created during a workflow after processing is complete.
- Removing worksheets that are no longer relevant due to changes in business processes.
- Cleaning up test or sample worksheets in a development environment.
Properties
| Name | Meaning |
|---|---|
| Worksheet ID | The ID of the worksheet to delete |
Output
The node outputs JSON data representing the result of the delete operation. Typically, this will confirm whether the worksheet was successfully deleted or provide error details if the deletion failed. The exact structure depends on the HAP API response but generally includes status information.
No binary data output is involved in this operation.
Dependencies
- Requires an API key credential for authenticating with the HAP API.
- The node expects the HAP API endpoint and authentication to be configured within n8n credentials.
- Network access to the HAP API service is necessary.
Troubleshooting
Common issues:
- Providing an invalid or non-existent Worksheet ID will cause the deletion to fail.
- Missing or incorrect API authentication credentials will prevent the node from connecting to the HAP API.
- Network connectivity problems can cause timeouts or failures.
Error messages:
- Errors indicating "Worksheet not found" suggest the provided Worksheet ID does not exist; verify the ID.
- Authentication errors imply invalid or missing API credentials; check and update the API key configuration.
- Timeout or connection errors indicate network issues; ensure the server running n8n can reach the HAP API endpoint.
Links and References
- HAP (Hyper Application Platform) API Documentation (replace with actual URL if available)