Skip to main content
GET
/
radius
/
realms
List Realms
curl --request GET \
  --url https://api.altostrat.io/radius/realms \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "group_ids": [
        "<string>"
      ],
      "proxy_target": "<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

Response

200 - application/json

List of realms.

data
object[]
pagination
object