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

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

Group object.

id
string
group_name
string
user_count
integer
check_attributes
object[]
reply_attributes
object[]
metadata
object
tags
string[]