Is there a way to get the the user that the flow was reassigned too? I need to get that user and update to a SharePoint list.
Thanks,
Isaac
Solved! Go to Solution.
Hi @ilanos,
If the approval is assigned to other users, there is no assign information in the response details.
As a workaround, you could store these approvers into a variable, after approval request end, compare the variable with final approvers by using intersection() function, then you will find these approvers not assigned.
For example:
intersection(variables('FinnalApprovers'),variables('OriginalApprovers'))
replace(join(variables('OriginalApprovers'),';'),join(variables('ApproversNotAssigned'),';'),'')
Run result:
Best Regards,
Community Support Team _ Lin Tu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @ilanos,
If the approval is assigned to other users, there is no assign information in the response details.
As a workaround, you could store these approvers into a variable, after approval request end, compare the variable with final approvers by using intersection() function, then you will find these approvers not assigned.
For example:
intersection(variables('FinnalApprovers'),variables('OriginalApprovers'))
replace(join(variables('OriginalApprovers'),';'),join(variables('ApproversNotAssigned'),';'),'')
Run result:
Best Regards,
Community Support Team _ Lin Tu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
How do I get the Final Approvers?
Hi @ilanos,
There is a dynamic content named Approver Email, they are final approvers.
Best Regards,
Community Support Team _ Lin Tu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Join digitally, March 2–4, 2021 to explore new tech that's ready to implement. Experience the keynote in mixed reality through AltspaceVR!
User | Count |
---|---|
85 | |
58 | |
44 | |
38 | |
34 |
User | Count |
---|---|
91 | |
74 | |
74 | |
61 | |
41 |