Skip to main content
GET
/
radius
/
accounts
/
{id}
Retrieve an Account
curl --request GET \
  --url https://api.altostrat.io/radius/accounts/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "username": "<string>",
  "status": "active",
  "container_id": "<string>",
  "group_count": 123,
  "check_attributes": [
    {
      "attribute": "<string>",
      "op": "<string>",
      "value": "<string>"
    }
  ],
  "reply_attributes": [
    {
      "attribute": "<string>",
      "op": "<string>",
      "value": "<string>"
    }
  ],
  "metadata": {},
  "tags": [
    "<string>"
  ],
  "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

The requested account object.

id
string
username
string
status
enum<string>
Available options:
active,
disabled
container_id
string | null
group_count
integer
check_attributes
object[]
reply_attributes
object[]
metadata
object
tags
string[]
created_at
string
updated_at
string