Skip to main content
GET
/
radius
/
accounts
/
{id}
/
groups
List Account Groups
curl --request GET \
  --url https://api.altostrat.io/radius/accounts/{id}/groups \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "group_name": "<string>",
      "user_count": 123,
      "check_attributes": [
        {
          "attribute": "<string>",
          "op": "<string>",
          "value": "<string>"
        }
      ],
      "reply_attributes": [
        {
          "attribute": "<string>",
          "op": "<string>",
          "value": "<string>"
        }
      ],
      "metadata": {},
      "tags": [
        "<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.

Path Parameters

id
string
required

Response

200 - application/json

List of groups the account belongs to.

data
object[]
pagination
object