I still do not see the value in the adaptive card. No errors, it is simple blank.
This is what the card looks like:
{
"type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.4",
"body": [
{
"type": "TextBlock",
"text": "Remote Access Request",
"wrap": true,
"weight": "Bolder",
"size": "Large"
},
{
"type": "ColumnSet",
"columns": [
{
"type": "Column",
"width": "stretch",
"items": [
{
"type": "TextBlock",
"text": "Requester",
"wrap": true,
"weight": "Lighter",
"size": "Small"
},
{
"type": "TextBlock",
"text": "@{outputs('Get_user_profile_(V2)')?['body/displayName']}",
"wrap": true
},
{
"type": "TextBlock",
"text": "Employee Status",
"wrap": true,
"size": "Small",
"weight": "Lighter"
},
{
"type": "TextBlock",
"text": "@{triggerOutputs()?['body/rar_employmentstatus@OData.Community.Display.V1.FormattedValue']}",
"wrap": true
},
{
"type": "TextBlock",
"text": "Email",
"wrap": true,
"weight": "Lighter",
"size": "Small"
},
{
"type": "TextBlock",
"text": "@{outputs('Get_user_profile_(V2)')?['body/mail']}",
"wrap": true
},
{
"type": "TextBlock",
"text": "Manager",
"wrap": true,
"size": "Small",
"weight": "Lighter"
},
{
"type": "TextBlock",
"text": "@{outputs('Get_manager_(V2)')?['body/displayName']}",
"wrap": true
}
]
},
{
"type": "Column",
"width": "stretch",
"items": [
{
"type": "TextBlock",
"text": "User ID",
"wrap": true,
"weight": "Lighter",
"size": "Small"
},
{
"type": "TextBlock",
"text": "@{triggerOutputs()?['body/rar_userid']}",
"wrap": true
},
{
"type": "TextBlock",
"text": "Work Phone",
"wrap": true,
"weight": "Lighter",
"size": "Small"
},
{
"type": "TextBlock",
"text": "@{triggerOutputs()?['body/rar_workphone']}",
"wrap": true
},
{
"type": "TextBlock",
"text": "Device Type",
"wrap": true,
"size": "Small",
"weight": "Lighter"
},
{
"type": "TextBlock",
"text": "@{triggerOutputs()?['body/rar_devicetype']}",
"wrap": true
}
]
}
]
},
{
"type": "TextBlock",
"text": "Business Use",
"wrap": true,
"size": "Small",
"weight": "Lighter"
},
{
"type": "TextBlock",
"text": "@{triggerOutputs()?['body/rar_notes']}",
"wrap": true
},
{
"type": "ActionSet",
"actions": [
{
"type": "Action.Submit",
"title": "Approve",
"id": "actionApprove"
},
{
"type": "Action.Submit",
"title": "Reject",
"id": "actionReject"
}
]
}
]
}