It would be great if "m365 flow list" listed not only flows owned by me but also flows shared with me.
Specs
Options
| Option |
Description |
--sharingStatus [sharingStatus] |
List a specific type of flows. Valid values: ownedByMe, personal, sharedWithMe, all. Defaults to ownedByMe. Don't specify this option when using asAdmin. |
Remarks
When you specify a value for sharingStatus, consider the following:
- Value
ownedByMe returns all flows created by you regardless of whether they are shared or not.
- Value
personal returns all flows created by you which are not shared.
- Value
sharedWithMe returns flows that are shared with you, or created by you and shared with someone.
- Value
all combines personal and sharedWithMe.
Technical details
We can keep using our current API, the only thing to add is:
OwnedByMe:
Keep the current API
Personal:
...&$filter=search('personal')
SharedWithMe:
...&$filter=search('team')
All:
Execute OwnedByMe and SharedWithMe.
It would be great if "m365 flow list" listed not only flows owned by me but also flows shared with me.
Specs
Options
--sharingStatus [sharingStatus]ownedByMe,personal,sharedWithMe,all. Defaults toownedByMe. Don't specify this option when usingasAdmin.Remarks
When you specify a value for
sharingStatus, consider the following:ownedByMereturns all flows created by you regardless of whether they are shared or not.personalreturns all flows created by you which are not shared.sharedWithMereturns flows that are shared with you, or created by you and shared with someone.allcombinespersonalandsharedWithMe.Technical details
We can keep using our current API, the only thing to add is:
OwnedByMe:
Keep the current API
Personal:
SharedWithMe:
All:
Execute
OwnedByMeandSharedWithMe.