Actions100
- Activity Logs Actions
- Articles Actions
- Asset Layouts Actions
- Asset Passwords Actions
- Assets Actions
- Get Assets
- Get Companies Company Id Assets
- Post Companies Company Id Assets
- Get Companies Company Id Assets Id
- Put Companies Company Id Assets Id
- Delete Companies Company Id Assets Id
- Put Companies Company Id Assets Id Archive
- Put Companies Company Id Assets Id Unarchive
- Put Companies Company Id Assets Id Move Layout
- Cards Actions
- Companies Actions
- Expirations Actions
- Exports Actions
- Folders Actions
- IP Addresses Actions
- Lists Actions
- Magic Dash Actions
- Matchers Actions
- Networks Actions
- Password Folders Actions
- Procedure Tasks Actions
- Procedures Actions
- Public Photos Actions
- Rack Storage Items Actions
- Rack Storages Actions
- Relations Actions
- Uploads Actions
Overview
This node is designed to delete a specific Procedure Task by its ID. It is useful in workflows where you need to programmatically remove tasks from a procedure, such as cleaning up outdated or completed tasks, managing task lifecycle, or automating administrative operations within a system that tracks procedure tasks.
For example, if you have an automated process that creates procedure tasks and later needs to remove them based on certain conditions (e.g., task completion or cancellation), this node can be used to delete those tasks by specifying their unique IDs.
Properties
Name | Meaning |
---|---|
Id | The unique identifier of the procedure task to delete. This is a required numeric value representing the task's ID. |
Output
The node outputs JSON data indicating the result of the deletion operation. Typically, this will include confirmation that the specified procedure task was successfully deleted or an error message if the deletion failed.
If the node supports binary data output, it would generally relate to any files or attachments associated with the procedure task, but based on the provided code and properties, no binary output is indicated.
Dependencies
- Requires an API key or authentication token configured in n8n credentials to authorize requests to the external service managing procedure tasks.
- Depends on an external API endpoint (base URL configured via credentials) that handles procedure task deletion.
- Uses an OpenAPI-based client library internally to interact with the API.
Troubleshooting
Common Issues:
- Providing an invalid or non-existent task ID will likely result in an error response from the API.
- Missing or incorrect API credentials will cause authentication failures.
- Network connectivity issues may prevent the node from reaching the API endpoint.
Error Messages:
- "Task not found" or similar indicates the specified ID does not exist; verify the ID before retrying.
- Authentication errors suggest checking the API key or token configuration.
- Timeout or connection errors require verifying network access and API availability.
Links and References
- Refer to the external API documentation for procedure task management to understand the expected request format and response details.
- Consult n8n documentation on setting up API credentials and using HTTP request nodes for custom integrations.