Azure Alerts Management Service Resource Provider
azure · Cloud
Azure Alerts Management Service provides a single pane of glass of alerts across Azure Monitor.
Authentication
Sample Requests
List alerts meta data information based on value of identifier parameter.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/azure.com/alertsmanagement-AlertsManagement/2019-05-05-preview/providers/Microsoft.AlertsManagement/alertsMetaData?identifier=MonitorServiceList&api-version=2019-05-05-preview"
import requests
params = {
"identifier": "MonitorServiceList",
"api-version": "2019-05-05-preview"
}
response = requests.get(
"https://api.apis.guru/v2/specs/azure.com/alertsmanagement-AlertsManagement/2019-05-05-preview/providers/Microsoft.AlertsManagement/alertsMetaData",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/azure.com/alertsmanagement-AlertsManagement/2019-05-05-preview/providers/Microsoft.AlertsManagement/alertsMetaData');
url.searchParams.set('identifier', 'MonitorServiceList');
url.searchParams.set('api-version', '2019-05-05-preview');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/azure.com/alertsmanagement-AlertsManagement/2019-05-05-preview/providers/Microsoft.AlertsManagement/alertsMetaData")
q := baseURL.Query()
q.Set("identifier", "MonitorServiceList")
q.Set("api-version", "2019-05-05-preview")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/azure.com/alertsmanagement-AlertsManagement/2019-05-05-preview/providers/Microsoft.AlertsManagement/alertsMetaData")
uri.query = URI.encode_www_form({
"identifier" => "MonitorServiceList",
"api-version" => "2019-05-05-preview"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/azure.com/alertsmanagement-AlertsManagement/2019-05-05-preview/providers/Microsoft.AlertsManagement/alertsMetaData?" . http_build_query([
"identifier" => "MonitorServiceList",
"api-version" => "2019-05-05-preview"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));List all operations available through Azure Alerts Management Resource Provider.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/azure.com/alertsmanagement-AlertsManagement/2019-05-05-preview/providers/Microsoft.AlertsManagement/operations?api-version=2019-05-05-preview"
import requests
params = {
"api-version": "2019-05-05-preview"
}
response = requests.get(
"https://api.apis.guru/v2/specs/azure.com/alertsmanagement-AlertsManagement/2019-05-05-preview/providers/Microsoft.AlertsManagement/operations",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/azure.com/alertsmanagement-AlertsManagement/2019-05-05-preview/providers/Microsoft.AlertsManagement/operations');
url.searchParams.set('api-version', '2019-05-05-preview');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/azure.com/alertsmanagement-AlertsManagement/2019-05-05-preview/providers/Microsoft.AlertsManagement/operations")
q := baseURL.Query()
q.Set("api-version", "2019-05-05-preview")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/azure.com/alertsmanagement-AlertsManagement/2019-05-05-preview/providers/Microsoft.AlertsManagement/operations")
uri.query = URI.encode_www_form({
"api-version" => "2019-05-05-preview"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/azure.com/alertsmanagement-AlertsManagement/2019-05-05-preview/providers/Microsoft.AlertsManagement/operations?" . http_build_query([
"api-version" => "2019-05-05-preview"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));List all action rules of the subscription and given input filters
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/azure.com/alertsmanagement-AlertsManagement/2019-05-05-preview/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/actionRules?name=test&severity=Sev0&actionGroup=example&alertRuleId=example&api-version=2019-05-05-preview&description=test&impactedScope=example&monitorService=Application%20Insights&targetResource=example&targetResourceType=example&targetResourceGroup=example"import requests
params = {
"name": "test",
"severity": "Sev0",
"actionGroup": "example",
"alertRuleId": "example",
"api-version": "2019-05-05-preview",
"description": "test",
"impactedScope": "example",
"monitorService": "Application Insights",
"targetResource": "example",
"targetResourceType": "example",
"targetResourceGroup": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/azure.com/alertsmanagement-AlertsManagement/2019-05-05-preview/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/actionRules",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/azure.com/alertsmanagement-AlertsManagement/2019-05-05-preview/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/actionRules');
url.searchParams.set('name', 'test');
url.searchParams.set('severity', 'Sev0');
url.searchParams.set('actionGroup', 'example');
url.searchParams.set('alertRuleId', 'example');
url.searchParams.set('api-version', '2019-05-05-preview');
url.searchParams.set('description', 'test');
url.searchParams.set('impactedScope', 'example');
url.searchParams.set('monitorService', 'Application Insights');
url.searchParams.set('targetResource', 'example');
url.searchParams.set('targetResourceType', 'example');
url.searchParams.set('targetResourceGroup', 'example');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/azure.com/alertsmanagement-AlertsManagement/2019-05-05-preview/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/actionRules")
q := baseURL.Query()
q.Set("name", "test")
q.Set("severity", "Sev0")
q.Set("actionGroup", "example")
q.Set("alertRuleId", "example")
q.Set("api-version", "2019-05-05-preview")
q.Set("description", "test")
q.Set("impactedScope", "example")
q.Set("monitorService", "Application Insights")
q.Set("targetResource", "example")
q.Set("targetResourceType", "example")
q.Set("targetResourceGroup", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/azure.com/alertsmanagement-AlertsManagement/2019-05-05-preview/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/actionRules")
uri.query = URI.encode_www_form({
"name" => "test",
"severity" => "Sev0",
"actionGroup" => "example",
"alertRuleId" => "example",
"api-version" => "2019-05-05-preview",
"description" => "test",
"impactedScope" => "example",
"monitorService" => "Application Insights",
"targetResource" => "example",
"targetResourceType" => "example",
"targetResourceGroup" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/azure.com/alertsmanagement-AlertsManagement/2019-05-05-preview/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/actionRules?" . http_build_query([
"name" => "test",
"severity" => "Sev0",
"actionGroup" => "example",
"alertRuleId" => "example",
"api-version" => "2019-05-05-preview",
"description" => "test",
"impactedScope" => "example",
"monitorService" => "Application Insights",
"targetResource" => "example",
"targetResourceType" => "example",
"targetResourceGroup" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with Azure Alerts Management Service Resource Provider?
Azure Alerts Management Service Resource Provider is a Cloud API. Developers commonly use cloud APIs for:
- provisioning and managing cloud infrastructure
- automating deployments and container orchestration
- monitoring uptime and performance metrics
- managing storage buckets and databases
- setting up auto-scaling and load balancing
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Azure Alerts Management Service Resource Provider is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide