Skip to main content
GET
/
api
/
v2
/
users
List Users
curl --request GET \
  --url https://api.example.com/api/v2/users \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "users": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "email_address": "<string>",
      "first_name": "<string>",
      "last_name": "<string>",
      "account_role": "<string>",
      "profile_picture": "<string>",
      "profile_color": "<string>",
      "is_deleted": true
    }
  ]
}

Body

application/json

The body is of type EmptyRequest · object.

Response

200 - application/json

UsersListResponse(users: List[server.api_routes.users_api_v2.UserResponse])

users
UserResponse · object[]
required