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 GET \
--url https://v1.api.altostrat.io/radius/account-containers \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"parent_id": "<string>",
"path": "<string>",
"level": 123,
"user_count": 123,
"container_count": 123,
"is_pinned": true,
"metadata": {},
"tags": [
"<string>"
],
"breadcrumbs": [
{
"id": "<string>",
"name": "<string>",
"level": 123
}
],
"created_at": "<string>",
"updated_at": "<string>"
}
],
"pinned": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"parent_id": "<string>",
"path": "<string>",
"level": 123,
"user_count": 123,
"container_count": 123,
"is_pinned": true,
"metadata": {},
"tags": [
"<string>"
],
"breadcrumbs": [
{
"id": "<string>",
"name": "<string>",
"level": 123
}
],
"created_at": "<string>",
"updated_at": "<string>"
}
],
"pagination": {
"per_page": 123,
"has_more": true,
"next_cursor": "<string>"
}
}Retrieve a list of account containers. Can be filtered by parent or level for tree traversal. Includes a separate list of pinned containers.
curl --request GET \
--url https://v1.api.altostrat.io/radius/account-containers \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"parent_id": "<string>",
"path": "<string>",
"level": 123,
"user_count": 123,
"container_count": 123,
"is_pinned": true,
"metadata": {},
"tags": [
"<string>"
],
"breadcrumbs": [
{
"id": "<string>",
"name": "<string>",
"level": 123
}
],
"created_at": "<string>",
"updated_at": "<string>"
}
],
"pinned": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"parent_id": "<string>",
"path": "<string>",
"level": 123,
"user_count": 123,
"container_count": 123,
"is_pinned": true,
"metadata": {},
"tags": [
"<string>"
],
"breadcrumbs": [
{
"id": "<string>",
"name": "<string>",
"level": 123
}
],
"created_at": "<string>",
"updated_at": "<string>"
}
],
"pagination": {
"per_page": 123,
"has_more": true,
"next_cursor": "<string>"
}
}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.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Filter by parent container ID. Omit to list root containers.
Filter by hierarchy level.
Whether to include the 'pinned' collection in the response.
default, name, priority, users, containers asc, desc Was this page helpful?