@Kuldeep Singh(OT) I don't see any reference guide that would help with your flow. But there is difference reference document on how to create the individual component/different service and then build your flow: Create Buget --> monitor Group action --> Specify your logic app post URL as webhook You can test your schema first which schema is sent and some common schemas are listed here. Logic App: Http trigger --> Http call (to call the slack endpoint. Please refer to slack documentation for HTTP call) Test Schema
{
"schemaId": "azureMonitorCommonAlertSchema",
"data": {
"essentials": {
"monitoringService": "CostAlerts",
"firedDateTime": "2024-02-21T10:57:32.056Z",
"description": "Your spend for budget Test_actual_cost_budget is now $11,111.00 exceeding your specified threshold $25.00.",
"essentialsVersion": "1.0",
"alertContextVersion": "1.0",
"alertId": "/subscriptions/11111111-1111-1111-1111-111111111111/providers/Microsoft.CostManagement/alerts/Test_Alert",
"alertRule": null,
"severity": null,
"signalType": null,
"monitorCondition": null,
"alertTargetIDs": null,
"configurationItems": [
"budgets"
],
"originAlertId": null
},
"alertContext": {
"AlertCategory": "budgets",
"AlertData": {
"Scope": "/subscriptions/11111111-1111-1111-1111-111111111111/",
"ThresholdType": "Actual",
"BudgetType": "Cost",
"BudgetThreshold": "$50.00",
"NotificationThresholdAmount": "$25.00",
"BudgetName": "Test_actual_cost_budget",
"BudgetId": "/subscriptions/11111111-1111-1111-1111-111111111111/providers/Microsoft.Consumption/budgets/Test_actual_cost_budget",
"BudgetStartDate": "2022-11-01",
"BudgetCreator": "******@sample.test",
"Unit": "USD",
"SpentAmount": "$11,111.00"
}
}
}
}
Created new budgets on my subscription. Please refer to Create Buget document for more details