GET
/
workspaces
List User's Workspaces
curl --request GET \
  --url https://api.altostrat.io/workspaces \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "billing_mode": "single",
      "pooled_seat_limit": 123,
      "archived": false,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "archived_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Auth0 JWT token for user authentication.

Response

200
application/json

A list of workspaces the user belongs to.

The response is of type object.