Auth profiles API

get listing

GET /api/rest/admin/equipment/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.eyJleHAiOjE3MTAyNTQ3MzEsInN1YiI6OTB9.LvJ3uBIKEKqzUGjMEnEaqq_PS1w8QXKRfWPZIFi19yY
Host: example.org
Cookie: 

Route

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

Response

Headers

X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 0
X-Content-Type-Options: nosniff
X-Download-Options: noopen
X-Permitted-Cross-Domain-Policies: none
Referrer-Policy: strict-origin-when-cross-origin
Content-Type: application/vnd.api+json
Vary: Accept
ETag: W/"f946dbb589954e253a571c2602968070"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: 7272259d-ee9e-4154-8bbe-2f638ac33b21
X-Runtime: 0.007873
Content-Length: 774

Status

200 OK

Body

{
  "data": [
    {
      "id": "1",
      "type": "auth-profiles",
      "links": {
        "self": "http://example.org/api/rest/admin/equipment/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": "auth-profiles",
      "links": {
        "self": "http://example.org/api/rest/admin/equipment/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/equipment/radius/auth-profiles?page%5Bnumber%5D=1&page%5Bsize%5D=50",
    "last": "http://example.org/api/rest/admin/equipment/radius/auth-profiles?page%5Bnumber%5D=1&page%5Bsize%5D=50"
  }
}