Skip to main content
GET
/
radius
/
account-containers
/
{id}
Get Container
curl --request GET \
  --url https://api.altostrat.io/radius/account-containers/{id} \
  --header 'Authorization: Bearer <token>'
{
  "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>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200 - application/json

Container details.

id
string
name
string
description
string
parent_id
string | null
path
string
level
integer
user_count
integer
container_count
integer
is_pinned
boolean
metadata
object
tags
string[]
breadcrumbs
object[]
created_at
string
updated_at
string