Dear Experts,
I have a flow that shows dynamic data on an adaptive card from a sharepoint list.
It works great only i think my string is incorrect because i see this in teams:
This is my flow:
I think the compose is wrong i want to use this url:
In the first xxx their must be the E_mail from the user and displayname the name of the user must be retrieved from the sharepoint list. Gr P
Hi @PeKi72
you are using "item()" within the compose action / the concat but you are not referencing on which item this should run. Usually you use this within an "apply to each" to run on each item within an array. Please add an "apply to each" around the compose action and run on the "value" from SharePoint get items. Then you can keep the "item()" expression.
Otherwise, you could also use the following expressions, if you only receive one item from the "Get items":
outputs('Get_items')?['body/value'][0]?['E_mail']
outputs('Get_items')?['body/value'][0]?['Display_name']
Just replace these expressions within the concat.
Does this help you? Otherwise please give me some more information.
Best regards
Marvin
If you like this post, give a Thumbs up. If it solved your request, Mark it as a Solution to enable other users to find it.
Blog: Cloudkumpel