For Agents
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Azure Alerts Management Service Resource Provider, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Azure Alerts Management Service Resource Provider API.
Query fired alerts across a subscription with filters on severity, monitorService, alertState, and time window
Change an alert's state to Acknowledged or Closed via the changestate endpoint
Retrieve the full state-change history for a specific alertId
Aggregate alert counts by severity, alert state, or monitor condition through the alertsSummary endpoint
GET STARTED
Query, change state, and summarise fired alert instances across Azure Monitor, and manage action rules that filter or suppress alerts. Supports 17 endpoints over alerts, action rules, smart groups, and metadata.
Use for: I need to list all critical alerts fired in the last 24 hours, Acknowledge an alert by alertId so it stops paging, Get the state-change history of a fired alert, Summarise active alerts by severity for a dashboard
Not supported: Does not create alert rules, configure metric thresholds, or send notifications directly — use for fired alert state management, suppression rules, and smart groups only.
Jentic publishes the only available OpenAPI document for Azure Alerts Management Service Resource Provider, keeping it validated and agent-ready.
The Azure Alerts Management API provides a unified view of fired alert instances across Azure Monitor, including activity log, metric, log search, and Service Health alerts. It exposes endpoints to list alerts with filtering by severity, monitor service, and time range, change alert state to acknowledged or closed, retrieve alert history, and manage action rules that suppress or route alerts. It also returns aggregated alert summaries and metadata that drive dashboards.
Create, update, and delete action rules that suppress or route alerts based on scope and conditions
Inspect smart groups that cluster related fired alerts to reduce notification noise
Read alert metadata such as monitor service catalogues for client-side filtering
Patterns agents use Azure Alerts Management Service Resource Provider API for, with concrete tasks.
★ Operations Dashboard for Live Alerts
Power an internal status board that shows all currently firing Azure alerts grouped by severity and service. The Alerts Management API returns paginated alert instances filterable by alertState, severity, and timeRange, and the alertsSummary endpoint produces aggregated counts in a single call. Most teams ship a working dashboard against this API in under a day.
Call alertsSummary for the current subscription with groupby=severity,alertState and timeRange=1d, then list any Sev0 or Sev1 alerts via Alerts_GetAll.
Maintenance Window Suppression
Suppress alerts on a target resource during a planned maintenance window so the on-call rota is not paged for expected outages. The API's action rules support scoped suppressions with start and end times, applied to specific resource IDs or alert conditions. The rule is removed automatically when the window ends, leaving normal alerting in place.
Create an action rule scoped to /subscriptions/{subscriptionId}/resourceGroups/db-prod that suppresses all alerts between 2026-06-12T00:00 and 2026-06-12T02:00.
Automated Alert Triage
Acknowledge or close alerts automatically based on remediation outcomes, replacing manual portal clicks. The changestate endpoint accepts a new state on a specific alertId, and Alerts_GetHistory returns the audit trail of every transition. This lets remediation pipelines record their actions back into Azure Monitor so the alert lifecycle stays consistent.
Call POST /subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/alerts/{alertId}/changestate with newState=Closed for every alert resolved by the runbook.
Agent-Driven Alert Correlation
A Jentic agent inspects smart groups and alert summaries to triage incidents at scale. It pulls active alerts via Alerts_GetAll, reads the smart group that clusters related signals, and decides whether to acknowledge, escalate, or open a ticket. The agent operates over the same 17 endpoints exposed in the spec, with no portal access required.
List all New alerts in subscription 1111-2222, group them by smartGroupId, and acknowledge every alert tagged with monitorService=Platform that belongs to a smart group with three or more members.
17 endpoints — the azure alerts management api provides a unified view of fired alert instances across azure monitor, including activity log, metric, log search, and service health alerts.
METHOD
PATH
DESCRIPTION
/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/alerts
List fired alerts with filters
/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/alerts/{alertId}
Get a single alert by ID
/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/alerts/{alertId}/changestate
Change alert state to Acknowledged or Closed
/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/alerts/{alertId}/history
Get state-change history for an alert
/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/alertsSummary
Aggregated alert summary
/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/actionRules
List action rules in a subscription
/providers/Microsoft.AlertsManagement/alertsMetaData
Reference metadata about supported alert sources
/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/alerts
List fired alerts with filters
/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/alerts/{alertId}
Get a single alert by ID
/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/alerts/{alertId}/changestate
Change alert state to Acknowledged or Closed
/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/alerts/{alertId}/history
Get state-change history for an alert
/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/alertsSummary
Aggregated alert summary
Three things that make agents converge on Jentic-routed access.
Credential isolation
Azure AD service principal credentials are stored in the Jentic MAXsystem vault. The agent calls the alerts management endpoints with a runtime-issued bearer token scoped to https://management.azure.com/, so secrets never appear in prompts or logs.
Intent-based discovery
Agents search Jentic by intent (e.g. "acknowledge azure alert" or "summarise alerts by severity") and Jentic returns the matching Microsoft.AlertsManagement operation with its full schema, so the agent can populate filters and state transitions without parsing ARM docs.
Time to first call
Direct integration: 1-2 days for AAD setup, paginated alert queries, and changestate retry handling. Through Jentic: under 1 hour — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Azure Activity Log Alerts
Configures the activity log alert rules whose fired instances appear in Alerts Management.
Use alongside this API when the agent needs to create or modify the rules that produce activity log alerts.
Azure Action Groups
Action groups receive notifications when alerts in this API fire.
Use when the agent needs to update notification destinations referenced by alert rules and action rules.
Azure Monitor Management
Broader Azure Monitor configuration including diagnostic settings, autoscale, and metric definitions.
Choose this for telemetry configuration tasks that go beyond alert state management.
Specific to using Azure Alerts Management Service Resource Provider API through Jentic.
What authentication does the Azure Alerts Management API use?
Azure Active Directory OAuth 2.0 via the azure_auth scheme (user_impersonation scope) on https://management.azure.com/. With Jentic, the AAD client credentials live in the MAXsystem vault and the agent calls the API with a short-lived bearer token, so secrets stay out of agent context.
Can I acknowledge an alert with this API?
Yes. POST /subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/alerts/{alertId}/changestate with newState=Acknowledged. The same endpoint accepts Closed or New, and Alerts_GetHistory will include the transition you just made.
What are the rate limits for the Azure Alerts Management API?
Subscription-level Azure Resource Manager throttling applies, typically 12,000 read and 1,200 write operations per hour per subscription, shared with other ARM calls. Heavy alert listing should use server-side filters rather than client-side pagination loops.
How do I create an alert suppression rule through Jentic?
Search Jentic for "create azure alert suppression rule", load the schema for the action rules CreateOrUpdate operation, then execute with the suppressionConfig schedule and the resource scope. Get an API key at https://app.jentic.com/sign-up.
Does this API let me create alert rules?
No. This API manages fired alert instances, action rules, and smart groups. To create the rules that produce alerts, use the metric alerts, log search alerts, or activity log alerts resource providers separately.
What are smart groups?
Smart groups are clusters of related alerts that Azure Monitor's correlation engine groups together to reduce noise. The smart groups endpoints in this API let you list, get, and change the state of a smart group rather than each individual alert in it.
/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/actionRules
List action rules in a subscription
/providers/Microsoft.AlertsManagement/alertsMetaData
Reference metadata about supported alert sources