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 provides integration with Binalyze AIR, a digital forensics and incident response platform. Specifically, the "Case" resource allows managing cases within Binalyze AIR, including operations such as archiving a case.
The Archive Case operation marks a specified case as archived in the system. This is useful for organizing and cleaning up active case lists by moving completed or inactive investigations out of immediate view without deleting them.
Practical examples:
- Automatically archive cases after they have been closed and no further action is expected.
- Use in workflows to maintain an up-to-date list of active investigations by archiving resolved cases.
- Integrate with ticketing or alerting systems to archive cases once related tickets are resolved.
Properties
| Name | Meaning |
|---|---|
| Case ID | The unique identifier of the case to be archived. This is required to specify which case to archive. |
Output
The node outputs JSON data representing the result of the archive operation on the specified case. Typically, this will include confirmation that the case was successfully archived, possibly returning the updated case object or status information.
No binary data output is indicated 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 from the n8n environment.
- Proper permissions on the API key to perform case management operations, including archiving.
Troubleshooting
Common issues:
- Invalid or missing Case ID: The operation requires a valid case identifier; ensure the Case ID is correct and exists.
- Authentication errors: Verify that the API key credential is correctly configured and has sufficient permissions.
- Network or connectivity problems: Ensure that the n8n instance can reach the Binalyze AIR API endpoint.
Error messages:
"Unknown resource: cases": Indicates the resource parameter was not set correctly; ensure "Case" is selected.- API errors related to authorization or invalid input will typically come from the Binalyze AIR API and should be checked against the API documentation.
Resolving these usually involves verifying credentials, input parameters, and network access.
Links and References
- Binalyze AIR Official Website
- Binalyze AIR API Documentation (for detailed API usage and error codes)
- n8n Documentation on Creating Custom Nodes