Hi
I am currently trying to construct a button-flow that, based on an excel-table, creates tasks in Microsoft planner. The user that triggers the button then should have the opportunity to provide input, based on which the flow dynamically assigns the tasks to a specific group/plan/bucket within the planner.
From what I understand, group/plan/bucket have both an id and a name-attribute and only the group can be identified via its name. This means that in order for the flow to make use of the user input (which are the names and not the ids), I have to use the 'list plans for group' (respectively 'list buckets') action to receive the plan/bucket-items and as such get access to both their names and ids, compare the names to the user-input, thus resulting in the ids.
The problem I ran into is that I apparently do not have permission to perform those two GET-calls. This is confusing to me, as the planner API (https://docs.microsoft.com/en-us/graph/api/resources/planner-overview?view=graph-rest-1.0) lists the permissions in a way that suggests to me that if I can create tasks (which I can, I tried this separately without any dynamic input) then I must have a 'Group.ReadWrite.All'-permission and therefore should also have permission to 'list plans for group' respectively 'list buckets'.
Then again, I might be misinterpreting the way the permissions work, so I would be thankful for any information on what might be the cause for my issue.
Best & thanks in advance,
JP