MS Teams Webhook Example
{
"type": "message",
"attachments": [
{
"contentType": "application/vnd.microsoft.card.adaptive",
"content": {
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.2",
"body": [
{
"type": "TextBlock",
"text": "Firing: {{ summary }}",
"weight": "bolder",
"size": "large",
"wrap": true
},
{
"type": "TextBlock",
"text": "[See monitor]({{urls.monitor}})",
"wrap": true
},
{
"type": "TextBlock",
"text": "[Investigate Issue]({{urls.issue}})",
"wrap": true
},
{
"type": "TextBlock",
"text": "[Silence]({{urls.silence}})",
"wrap": true
},
{
"type": "TextBlock",
"text": "{{ description }}",
"wrap": true
}
]
}
}
]
}Last updated
