I've been working on sending alerts from Solarwinds to Teams webhook. I used this format for some alerts based on application/json:
{
"title": "ALERT TRIGGER: ${N=SwisEntity;M=Caption} Memory Utilization",
"text": "DEVICE: [${N=SwisEntity;M=Caption}](${N=SwisEntity;M=DetailsUrl}) \n\r
IP ADDRESS: ${N=SwisEntity;M=IP_Address}\n\r
VENDOR: ${N=SwisEntity;M=Vendor}\n\r
MemoryUsed: ${N=SwisEntity;M=PercentMemoryUsed;F=Percent}\n\r
MemoryAvailable: ${N=SwisEntity;M=MemoryAvailable;F=Bytes}"
}
The alert display is fine on the Teams channel, but there is something I would like to change:

When we receive the alert (on both Teams desktop client and mobile app), "Card" is displayed as title. Is there a way to change that using that format? The idea is to preview the alert (Node is down, Node Rebooted, Memory Utilization, and so on) before open it on the channel. Thanks!!