Child API call in Flow Designer Data Stream Action
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-06-2023 11:09 AM
I have an Data Stream Action which is querying the Microsoft Graph for users.
There is data on a property (mailboxSettings) which I also need to pull in but if the user is not mail-enabled the Graph throws an error.
So I will need to query this property separately for each user and ignore any errors due to lack of mailbox.
Is there a way to achieve this within my main Data Stream Action? Or will I need to do this separately for each record after they are imported from the stream?
In Powershell I would get all the users and then loop through them to get the mailboxSettings (ignoring errors)
Any suggestions appreciated. Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-10-2023 09:50 AM
That's helpful thank you - I was hoping there was a way to nest it all in a single import but this will work.