GET
/
workspaces
/
{workspace_id}
Get Workspace Details
curl --request GET \
  --url https://api.altostrat.io/workspaces/{workspace_id} \
  --header 'Authorization: Bearer <token>'
{
  "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.

Path Parameters

workspace_id
string
required

The unique identifier for the workspace.

Example:

"ws_abc123"

Response

200
application/json

Workspace details returned successfully.

The response is of type object.