21 Mar 2025
07:47 AM
- last edited on
24 Mar 2025
07:09 AM
by
MaciejNeumann
Mobile app crash alert - Payload to pass for webhook notification
Hi All,
Need help in customizing Payload details for Mobile app crash alert to sent to Teams channel (webhook)
i tried to pass below payload but apart from {ImpactedEntity} it didn't retrieve any details. content is empty.
example:
{
"@type": "MessageCard",
"@context": "http://schema.org/extensions",
"themeColor": "FF0000",
"summary": "Mobile App Crash Detected for Android",
"sections": [
{
"activityTitle": "Application: **{ImpactedEntity}**",
"facts": [
{
"name": "Crash ID",
"value": "{CrashId}"
},
{
"name": "User",
"value": "{UserName}"
},
{
"name": "Device",
"value": "{DeviceInfo}"
},
{
"name": "OS Version",
"value": "{OSVersion}"
},
{
"name": "App Version",
"value": "{AppVersion}"
},
{
"name": "Crash Timestamp",
"value": "{CrashTimestamp}"
},
{
"name": "Location",
"value": "{LocationInfo}"
},
{
"name": "Crash Description",
"value": "{CrashDescription}"
}
]
}
],
"potentialAction": [
{
"@type": "OpenUri",
"name": "View Crash Details",
"targets": [
{
"os": "default",
"uri": "{DynatraceCrashDetailsUrl}"
}
]
}
]
}
========
How to custom payload details and pass it here to retrieve contents?
21 Mar 2025 07:57 AM
As you can from screenshot, only ImpactedEntity is retrieving. I need help ASAP 😞