Langsung ke konten utama
GET
/
workspaces
Daftar workspace
curl --request GET \
  --url https://api.altostrat.io/workspaces \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "ws_a1b2c3d4e5f6g7h8",
      "name": "ACME Corporation",
      "description": "Workspace utama untuk semua proyek ACME.",
      "billing_mode": "pooled",
      "pooled_seat_limit": 100,
      "archived": false,
      "created_at": "2025-10-29T00:40:06.000000Z",
      "updated_at": "2025-10-29T00:40:06.000000Z",
      "archived_at": null
    }
  ],
  "has_more": false
}

Authorizations

Authorization
string
header
required

Masukkan JWT Anda dalam format: Bearer {token}

Response

Sebuah daftar workspace.

data
object[]
has_more
boolean
Example:

false