Skip to main content
GET
/
radius
/
accounts
List Accounts
curl --request GET \
  --url https://api.altostrat.io/radius/accounts \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "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>"
    }
  ],
  "pagination": {
    "per_page": 123,
    "has_more": true,
    "next_cursor": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

per_page
integer
default:25
cursor
string
container_id
string

Filter accounts by specific container.

Response

200 - application/json

A paginated list of accounts.

data
object[]
pagination
object