DevZero Logo
DevZero

Get clusters for a team

GET
/teams/{team_id}/clusters
/teams/{team_id}/clusters

Path Parameters

team_id
Required
string

ID of team

Header Parameters

Authorization
Required
string

Value: "Bearer <token>"; visit the "User Settings" page in the DevZero dashboard to generate a token

Query Parameters

user_idstring

user ID filter to return only clusters for a certain user

pageinteger

The page number to retrieve

Minimum: 1

limitinteger

The number of items to retrieve per page

Minimum: 1Maximum: 100

ascendingboolean

Sort in ascending order based on object creation timestamp

curl -X GET "https://api.devzero.io/backend/v0/teams/string/clusters?user_id=string&page=1&limit=1&ascending=true" \
  -H "Authorization: string"

array of cluster information

[
  {
    "created_at": "2019-08-24T14:15:22Z",
    "deleted_at": "2019-08-24",
    "description": "string",
    "id": "string",
    "nickname": "string",
    "num_workspaces": 0,
    "region": "string",
    "region_name": "string",
    "status": "Unknown",
    "team_id": "string",
    "updated_at": "2019-08-24",
    "user": {
      "default_region": "string",
      "default_region_name": "string",
      "dora_connection_ids": [
        "string"
      ],
      "dxi_onboarding_checklist": {
        "analyze_own_code": "SKIPPED",
        "development_process_bottlenecks": "SKIPPED",
        "devzero_cli": "SKIPPED",
        "github_token": "SKIPPED",
        "is_dora_repository_connected": true
      },
      "email": "user@example.com",
      "given_name": "string",
      "id": "string",
      "linked_vcss": [
        {
          "link_metadata": "string",
          "vsc_uri": "string"
        }
      ],
      "onboarding_checklist": {
        "has_completed_onboarding": true,
        "has_completed_onboarding_checklist": true,
        "has_completed_recipe_quick_starters": true,
        "has_created_recipe": true,
        "has_dismissed_quickstart": true,
        "has_dismissed_recipe_callout": true,
        "has_forked_quickstart": true,
        "has_launched_workspace": true,
        "has_seen_onboarding_recipe_modal": true,
        "onboarding_path": "undefined"
      },
      "sub": "string",
      "teams": [
        {
          "is_owner": true,
          "name": "string",
          "permissions": "string",
          "team_id": "string",
          "user_id": "string"
        }
      ],
      "timezone": "string",
      "user_scoped_recipe": "string"
    },
    "user_id": "string"
  }
]