Vai al contenuto principale
GET
/
workspaces
Elenca i workspace
curl --request GET \
  --url https://api.altostrat.io/workspaces \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "ws_a1b2c3d4e5f6g7h8",
      "name": "ACME Corporation",
      "description": "Workspace primario per tutti i progetti 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

Inserisci il tuo JWT nel formato: Bearer {token}

Response

Un elenco di workspace.

data
object[]
has_more
boolean
Example:

false