Altostrat Studio is here — the AI-native network operations IDE for engineers running production. Terminal, diagrams, runbooks, and Copilot in one workspace. Get started →
curl --request PATCH \
--url https://v1.api.altostrat.io/workspaces/{workspaceId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "ACME Corp. Workspace",
"description": "Main workspace for all company operations."
}
'{
"id": "ws_a1b2c3d4e5f6g7h8",
"name": "ACME Corporation",
"description": "Primary workspace for all ACME projects.",
"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
}Updates the specified workspace by setting the values of the parameters passed. Any parameters not provided will be left unchanged. Only workspace owners and admins can perform this action.
curl --request PATCH \
--url https://v1.api.altostrat.io/workspaces/{workspaceId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "ACME Corp. Workspace",
"description": "Main workspace for all company operations."
}
'{
"id": "ws_a1b2c3d4e5f6g7h8",
"name": "ACME Corporation",
"description": "Primary workspace for all ACME projects.",
"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
}Documentation Index
Fetch the complete documentation index at: https://altostrat.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
Enter your JWT in the format: Bearer {token}
The ID of the workspace.
"ws_a1b2c3d4e5f6g7h8"
The updated workspace object.
Unique identifier for the workspace, prefixed with ws_.
"ws_a1b2c3d4e5f6g7h8"
The name of the workspace.
"ACME Corporation"
An optional description for the workspace.
"Primary workspace for all ACME projects."
The billing mode for the workspace. Determines how subscriptions and usage are handled.
single, assigned, pooled "pooled"
The total number of seats available in 'pooled' billing mode. This is null for other modes.
100
Whether the workspace is archived.
false
The timestamp when the workspace was created.
"2025-10-29T00:40:06.000000Z"
The timestamp when the workspace was last updated.
"2025-10-29T00:40:06.000000Z"
The timestamp when the workspace was archived.
null
Was this page helpful?