Actions99
- InterACT Actions
- Notification Actions
- Organization Actions
- Task Actions
- Policy Actions
- Repository Actions
- Setting Actions
- Triage Rule Actions
- User Actions
- Acquisition Actions
- API Token Actions
- Asset Actions
- Auto Asset Tag Actions
- Baseline Actions
- Case Actions
- Evidence Actions
Overview
The node manages tasks within the Binalyze AIR platform, specifically allowing operations such as creating, retrieving, updating, and deleting tasks. The "Delete Task" operation removes a specified task from the system by its unique identifier.
This node is beneficial in automation workflows where task lifecycle management is required, for example:
- Automatically cleaning up completed or obsolete tasks.
- Integrating task deletion into incident response workflows.
- Managing task assignments dynamically based on external triggers.
Properties
| Name | Meaning |
|---|---|
| Task ID | The unique identifier of the task to delete. This must be provided to specify which task should be removed. |
Output
The output JSON typically contains information about the result of the delete operation, such as confirmation of deletion or status messages. Since this is a delete operation, the output usually confirms success or provides error details if the deletion failed.
No binary data output is expected for this operation.
Dependencies
- Requires an API key credential for authenticating with the Binalyze AIR platform.
- The node depends on the Binalyze AIR API being accessible and properly configured.
- No additional external services are needed beyond the Binalyze AIR API.
Troubleshooting
Common Issues:
- Providing an invalid or non-existent Task ID will cause the deletion to fail.
- Network connectivity issues can prevent communication with the Binalyze AIR API.
- Insufficient permissions associated with the API key may block task deletion.
Error Messages:
"Unknown resource": Occurs if the resource parameter is incorrect; ensure "tasks" is selected.- API errors indicating "Task not found" suggest the Task ID does not exist.
- Authentication errors indicate problems with the API key credentials.
Resolutions:
- Verify the Task ID is correct and exists in the system.
- Check network connectivity and API endpoint accessibility.
- Confirm that the API key has sufficient permissions to delete tasks.
Links and References
- Binalyze AIR API Documentation (for detailed API usage and authentication)
- n8n Documentation on Creating Custom Nodes