-
Hello UTMStack Community and Developers, We are currently exploring ways to enhance our incident response workflow with UTMStack. Specifically, we are implementing an automation script that triggers when certain alerts are raised. A key part of this automation would be to automatically close the originating alert within UTMStack once our incident response script has been executed successfully. We have a few questions regarding this and would greatly appreciate any guidance: API for Alert Management: Is there an existing API within UTMStack that allows for the programmatic closure (or status update) of alerts? If so, could you please point us to the relevant documentation or provide some information on how to interact with it for this purpose? API Key Creation: To utilize the API (if available), we would need to authenticate our automation script. We haven't been able to locate documentation on how to create or obtain API keys for UTMStack. Could you please provide instructions on how to generate API keys within the UTMStack interface or via any other method? Passing Alert Context to Automation: When an incident response automation is triggered by an alert, is it possible to pass contextual information about that specific alert to the automation script as a variable? Ideally, we would like to receive a unique identifier (like an alert ID or number) that our script can then use to reference and potentially close the alert via the API. If this is not currently supported, would it be a feasible feature request? Our goal is to create a more streamlined and efficient incident response process where the system can automatically acknowledge and close resolved alerts, reducing manual intervention and ensuring a cleaner alert overview. Thank you for your time and assistance with these questions. We are eager to learn more about UTMStack's capabilities in this area. Sincerely, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Hi!, Yes, you can find our API documentation here. All UTMStack alert management functionalities are available through the API. Regarding automated closure of alerts, this is a great idea. I added it to our internal backlog so its an option in the SOAR workflow. Regarding alert contextual information, yes, just press tab in the command input window (last step in wizard) and you will get many variable options to obtain from the alert. you could potentially include these context info in a curl to your automations script. |
Beta Was this translation helpful? Give feedback.
-
Custom alert variables will be available in our next major update v11. This will be live in 2 weeks :) Regarding bearer token you can get it like this: Obtain bearer token: Use it: |
Beta Was this translation helpful? Give feedback.
Hi Roberto,
Thank you once again for your detailed feedback, your patience, and for the troubleshooting you’ve already carried out.
You’re absolutely right to be confused — and we sincerely apologize for the inconvenience. It appears there was a miscommunication regarding the correct authentication endpoint and process.
To clarify: the /api/login endpoint previously referenced is not valid for bearer token generation in the current version of UTMStack. The correct authentication method involves a different endpoint and payload structure.
To address this properly, we’ve published an updated and detailed guide in our official documentation that walks you step-by-step through the correct pro…