hi to all,
i have a flow triggered from a powerapp and a user email address comes from the app.
In the flow i try to check if the user (from email address) has access to a special document in a document library.
If not the flow should not give back the content of the document.
How can i do the access check?
regards
Solved! Go to Solution.
Hi @iw
Use the REST API method HTTP Get method getusereffectivepermissions(@user)?@user='<user login name>' to determine user permissions.
Look section GetUserEffectivePermissions method
If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up.
Thanks
If you liked my response, please consider giving it a thumbs up
Proud to be a Flownaut!
Learn more from my blogHi @iw
Use the REST API method HTTP Get method getusereffectivepermissions(@user)?@user='<user login name>' to determine user permissions.
Look section GetUserEffectivePermissions method
If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up.
Thanks
If you liked my response, please consider giving it a thumbs up
Proud to be a Flownaut!
Learn more from my blogHi @iw
Since your PowerApp is calling Flow it will do so in the context of the current logged in user
If you try and query that special document library item for the current user it will either return no results or exception
For no results you can check the length of the result set, if 0 then user does not have access
If exception for file not found =, you can configure run after step and return empty content
Regards,
Reza Dorrani
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
thank you for your Feedback.
is this the right way?
_api/web/GetFileByServerRelativeUrl('/Folder Name/file name')/$value/getusereffectivepermissions(@user)?@user='loggedInUser'
User | Count |
---|---|
93 | |
45 | |
20 | |
20 | |
16 |
User | Count |
---|---|
136 | |
56 | |
45 | |
36 | |
26 |