GET
/
v2
/
teams
/
{team_nanoid}
/
users
Get team users
curl --request GET \
  --url https://b2b-api.dev-riseworks.io/v2/teams/{team_nanoid}/users \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "users": [
      {
        "nanoid": "<string>",
        "first_name": "<string>",
        "last_name": "<string>",
        "email": "<string>",
        "role": "<string>",
        "rise_account": "<string>",
        "riseid": "<string>",
        "avatar": "<string>",
        "address": {
          "line_1": "<string>",
          "line_2": "<string>",
          "city": "<string>",
          "state": "<string>",
          "country": "<string>",
          "zip_code": "<string>"
        }
      }
    ]
  }
}

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

Unique identifier of the team for which to retrieve users.

Required string length: 15

Response

200
application/json

Default Response

The response is of type object.