curl --request GET \
--url https://b2b-api.dev-riseworks.io/v2/user/teams \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"teams": [
{
"nanoid": "<string>",
"name": "<string>",
"riseid": "<string>",
"rise_account": "<string>",
"role": "<string>",
"avatar": "<string>",
"balance": "<string>",
"payees_count": 123,
"administrators_count": 123
}
]
}
}Retrieves a list of teams associated with the logged-in user.
curl --request GET \
--url https://b2b-api.dev-riseworks.io/v2/user/teams \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"teams": [
{
"nanoid": "<string>",
"name": "<string>",
"riseid": "<string>",
"rise_account": "<string>",
"role": "<string>",
"avatar": "<string>",
"balance": "<string>",
"payees_count": 123,
"administrators_count": 123
}
]
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Default Response
true, false Show child attributes
Show child attributes
Unique identifier for the team.
Name of the team.
1Unique identifier for the team in Rise.
42Unique identifier for the team's Rise account.
Role of the user in the team.
URL of the team's avatar image.
Balance associated with the team.
Number of payees in the team.
Number of administrators in the team.