Hi @aaron_m,
Could you please share a screenshot of your flow's configuration?
Are these members (that you mentioned) Office 365 users or the StaffHub members?
Further, do you want to get the Displayname of a StaffHub member within your flow?
I suppose that these members are the StaffHub members, is it true? If you want to get the Displayname of a StaffHub member based on the MemberId (e.g. 'MBER_fc841a77-7354-4991-af6d-2dc0bf502399'), please take a try with the following workaround:
- Add a proper trigger, here I use Flow Button trigger.
- Add a "List all members in a team" action, specify the Team Id.
- Add a "Filter array" action, From set to Members Array of the "List all members in a team" action. Within condition box, left input box set to Member ID, right input box set to a specific member id (on your side, you should type memberId variable that you have gotten), middle drop down, choose is equal to.
- Add a "Compose" action, Inputs set to following formula:
first(body('Filter_array'))?['displayName']
Image reference:
The flow works successfully as below:
Best regards,
Kris