Having a little trouble with determining which custom menu item was selected in Python.
If I have the menu below, and have retrieved the card(html = item["html"]) in the notification processing code, how do I actually access the id value("verify")?
"menuItems": [
{ "action": "CUSTOM",
"id":"verify",
"values":
[
{
"displayName": "Verify Incident",
"iconUrl": "https"
}
]
}
]