To get a list of your teams, you'll call the /teams/ interface. This will give you a list of groups of users/talent that you can later submit a payment to.

Teams

Return a list of your team membership. You may also have different companies in this list.

const { data } = await api.get('/teams/')

Team Members

Now that you have your team IDs and or RiseIds, you can pass that value to the team member/talent interface as the first path parameter. /teams/1234/talent

const { data }  = await api.get('/teams/:teamId/talent')