GET
/
v2
/
teams
/
{team_nanoid}
Get team by nanoid
curl --request GET \
  --url https://b2b-api.dev-riseworks.io/v2/teams/{team_nanoid} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "nanoid": "<string>",
    "name": "<string>",
    "avatar": "<string>",
    "balance": "<string>",
    "administrators": [
      {
        "relationship_nanoid": "<string>",
        "user_nanoid": "<string>",
        "avatar": "<string>",
        "first_name": "<string>",
        "last_name": "<string>",
        "email": "<string>",
        "type": "team_admin"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

team_nanoid
string
required

TeamNanoid

Required string length: 15

Response

200
application/json

Default Response

The response is of type object.