Radius Auth profiles API

get listing

GET /api/rest/admin/radius-auth-profiles

Parameters

Name Description
filter[id] id filter
filter[name] name filter

Request

Headers

Version: HTTP/1.0
Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOjM3LCJhdWQiOlsiYWRtaW4iXSwiZXhwIjoxNzQwODUzMDI0fQ.1C2Wy30pylBflMN829VR1Ybr6zsyAhCUh3Kxk1vx3bA
Host: example.org
Cookie: 

Route

GET /api/rest/admin/radius-auth-profiles

Response

Headers

X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 0
X-Content-Type-Options: nosniff
X-Permitted-Cross-Domain-Policies: none
Referrer-Policy: strict-origin-when-cross-origin
Content-Type: application/vnd.api+json
Vary: Accept
ETag: W/"7dd4be146680a2846e7c286a908f8755"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: 43da2407-25a1-460a-a999-71a2172d3a15
X-Runtime: 0.008963
Content-Length: 748

Status

200 OK

Body

{
  "data": [
    {
      "id": "1",
      "type": "radius-auth-profiles",
      "links": {
        "self": "http://example.org/api/rest/admin/radius-auth-profiles/1"
      },
      "attributes": {
        "name": "auth_profile1",
        "server": "server",
        "port": 1,
        "secret": "secret",
        "reject-on-error": true,
        "timeout": 100,
        "attempts": 2
      }
    },
    {
      "id": "2",
      "type": "radius-auth-profiles",
      "links": {
        "self": "http://example.org/api/rest/admin/radius-auth-profiles/2"
      },
      "attributes": {
        "name": "auth_profile2",
        "server": "server",
        "port": 1,
        "secret": "secret",
        "reject-on-error": true,
        "timeout": 100,
        "attempts": 2
      }
    }
  ],
  "meta": {
    "total-count": 2
  },
  "links": {
    "first": "http://example.org/api/rest/admin/radius-auth-profiles?page%5Bnumber%5D=1&page%5Bsize%5D=50",
    "last": "http://example.org/api/rest/admin/radius-auth-profiles?page%5Bnumber%5D=1&page%5Bsize%5D=50"
  }
}