GET
/
v2
/
user
/
teams
Get user team's
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
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

Default Response

The response is of type object.