Sure, i wasn't sure how to do it but see below: {
"type":"message",
"attachments":[
{
"contentType":"application/vnd.microsoft.card.adaptive",
"contentUrl":null,
"content":{
"$schema":"http://adaptivecards.io/schemas/adaptive-card.json",
"type":"AdaptiveCard",
"version":"1.2",
"body":[
{
"type": "TextBlock",
"text": "**Meraki Alert For Organisation {{organizationName}}**"
},
{
"type": "TextBlock",
"text": "**Alert**: {{alertType}} - {{alertLevel}}"
},
{
"type": "TextBlock",
"text": "**Device**: {{deviceName}}"
},
{
"type": "TextBlock",
"text": "**When**: {{occurredAt}}"
}
]
}
}
]
}
... View more