cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Mobile app crash alert - Payload to pass for webhook notification

Iswaria_Sasi
Newcomer_

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? 

 

 

1 REPLY 1

Iswaria_Sasi
Newcomer_

Iswaria_Sasi_0-1742543798659.png

As you can from screenshot, only ImpactedEntity is retrieving. I need help ASAP 😞

Featured Posts