POST
/
v2
/
users
/
all
curl --request POST \
  --url https://api.galileo.ai/v2/users/all \
  --header 'Content-Type: application/json' \
  --header 'Galileo-API-Key: <api-key>' \
  --data '{
  "filters": [],
  "sort": {
    "name": "created_at",
    "ascending": false,
    "sort_type": "column"
  }
}'
{
  "starting_token": 0,
  "limit": 100,
  "paginated": false,
  "next_starting_token": 123,
  "users": [
    {
      "id": "<string>",
      "permissions": [],
      "email": "<string>",
      "first_name": "<string>",
      "last_name": "<string>",
      "auth_method": "email",
      "role": "read_only",
      "email_is_verified": true,
      "organization_id": "<string>",
      "organization_name": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "projects_count": 123,
      "runs_count": 123
    }
  ]
}

Authorizations

Galileo-API-Key
string
header
required

Query Parameters

starting_token
integer
default:0
limit
integer
default:100

Body

application/json

Response

200
application/json

Successful Response

The response is of type object.