I’m using the client API via Powershell and have this code thus far.
Get the team members for a team
$team = $octoRepo.Teams.FindByName(“Developers”)
$teamMemberIds = $team.MemberUserIds
Now that I have the team member Ids, how do I get the users with those Ids? Looking for an example.