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
This node integrates with Binalyze AIR to manage triage rules, specifically allowing retrieval of tags associated with triage rules. The "Get Triage Rule Tags" operation fetches tags that can be filtered by organization and search term. This is useful in scenarios where users want to categorize or filter triage rules based on tags for better incident management and prioritization.
Practical examples include:
- Retrieving all tags visible to a default or specific organization to display in a dashboard.
- Searching for tags containing a specific keyword to quickly find relevant triage rules.
- Filtering tags by organization to ensure compliance with organizational policies.
Properties
| Name | Meaning |
|---|---|
| Additional Fields | Optional fields to refine the tag retrieval: |
| - Organization | Filter tags by organization. Can specify an organization by selecting from a list, entering its ID (positive number or 0 for default org), or name. |
| - Filter: Search Term | A string to filter rule tags by matching text. |
Output
The node outputs JSON data containing the list of triage rule tags retrieved according to the specified filters. Each item in the output typically represents a tag object with properties such as tag name and possibly associated metadata (not detailed in the provided code).
No binary data output is indicated for this operation.
Dependencies
- Requires an API key credential for authenticating with the Binalyze AIR service.
- The node depends on the Binalyze AIR API endpoints related to triage rules and tags.
- Proper configuration of the API authentication credential within n8n is necessary.
Troubleshooting
Common Issues:
- Invalid organization ID format: The organization ID must be a positive number or zero for the default organization. Providing invalid input will cause validation errors.
- No tags returned: If no tags match the search term or organization filter, the output will be empty.
- Authentication failures: Ensure the API key credential is valid and has sufficient permissions.
Error Messages:
"Unknown resource: triagerules": Indicates the resource parameter was not set correctly; verify the resource name.- Validation error on organization ID input if it does not match the required regex pattern.
- API errors due to network issues or invalid credentials will propagate from the underlying API call.
Links and References
- Binalyze AIR Official Documentation (for API details and triage rules)
- n8n Documentation on Creating Custom Nodes