cURL
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.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Default Response
The response is of type object.
object