Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Developer Tools / Azure / Azure Alerts Management Service Resource Provider
Azure Alerts Management Service Resource Provider logo

Microsoft Azure Azure Alerts Management Service Resource Provider

Browse all Azure APIs
★ Only Publicly Available OpenAPI DocumentDeveloper ToolsMonitoring Observabilityoauth217 EndpointsREST

For Agents

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.

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.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Azure Alerts Management Service Resource Provider to your agent

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.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# 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 instance

Jentic 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.

Capabilities

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

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

Use Cases

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.

Key Endpoints

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

GET

/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/alerts

List fired alerts with filters

GET

/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/alerts/{alertId}

Get a single alert by ID

POST

/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/alerts/{alertId}/changestate

Change alert state to Acknowledged or Closed

GET

/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/alerts/{alertId}/history

Get state-change history for an alert

GET

/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/alertsSummary

Aggregated alert summary

GET

/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/actionRules

List action rules in a subscription

GET

/providers/Microsoft.AlertsManagement/alertsMetaData

Reference metadata about supported alert sources

GET

/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/alerts

List fired alerts with filters

GET

/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/alerts/{alertId}

Get a single alert by ID

POST

/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/alerts/{alertId}/changestate

Change alert state to Acknowledged or Closed

GET

/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/alerts/{alertId}/history

Get state-change history for an alert

GET

/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/alertsSummary

Aggregated alert summary

GET

/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/actionRules

List action rules in a subscription

GET

/providers/Microsoft.AlertsManagement/alertsMetaData

Reference metadata about supported alert sources

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

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

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

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.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

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.

Complementary

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.

Alternative

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.

FAQs

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.

GET STARTED

Start building with Azure Alerts Management Service Resource Provider API

Explore with Jentic
View OpenAPI Document