Hey all!
I have a flow that kicks off via Webhook when one of my Jamf policies finish. I actually have a few of these for different policies, they work great, no issues. However, I've recently had one flow just stop triggering, specifically when it has a step to post an Adaptive Card to a Teams channel. The card format (see below) is used exactly as it is in other flows, with some slight wording differences. If I take this step out, the flow triggers without issue. Put it back in, the flow never triggers. I have moderation in the Teams channel turned off, the JSON is using version 1.4, the variables called are all good, the Workflows app is installed in Teams, there's no waiting for a response for the post. I'm very much scratching my head here, since my other flows aren't having an issue.
Any thoughts?
Adaptive Card JSON:
{
"type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.4",
"body": [
{
"type": "TextBlock",
"wrap": true,
"text": "A computer has been deployed!",
"style": "heading",
"fontType": "Default",
"size": "large",
"weight": "bolder"
},
{
"type": "TextBlock",
"wrap": true,
"text": "The following computer has been deployed and updated inventory information in Jamf Pro and TDX:",
"weight": "Default",
"color": "Default",
"size": "Default",
"fontType": "Default",
"style": "default"
},
{
"type": "FactSet",
"facts": [
{
"title": "Computer Name",
"value": "@{variables('ComputerName')}"
},
{
"title": "Serial Number",
"value": "@{variables('SerialNumber')}"
},
{
"title": "Model",
"value": "@{body('Parse_JSON_Get_Jamf_Computer_Info')?['body']?['hardware']?['model']}"
},
{
"title": "macOS Version",
"value": "@{variables('macOSVersion')}"
},
{
"title": "IP Address",
"value": "@{variables('IPAddress')}"
},
{
"title": "Location",
"value": "@{variables('AssetLocation')}"
}
]
},
{
"type": "ActionSet",
"actions": [
{
"type": "Action.OpenUrl",
"title": "View Computer in Jamf Pro",
"url": "url scrubbed"
}
]
},
{
"type": "ActionSet",
"actions": [
{
"type": "Action.OpenUrl",
"title": "View Computer in TDX",
"url": "url scrubbed"
}
]
}
]
}