Radius Auth profiles API

get specific entry

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

Request

Headers

Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOjQxLCJhdWQiOlsiYWRtaW4iXSwiZXhwIjoxNzcyMjExOTk5fQ.I5hHhA05s2MqA_ppzrqA_JjfD99WQYgnrQLB9PLtQgk
Host: example.org
Cookie: 

Route

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

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/"fadcad0e7f1d98ed34798a11b411af0c"
cache-control: max-age=0, private, must-revalidate
x-request-id: 1857d7aa-4ce6-4a95-9de0-b4e7688a532c
x-runtime: 0.006251
content-length: 258

Status

200 OK

Body

{
  "data": {
    "id": "3",
    "type": "radius-auth-profiles",
    "links": {
      "self": "http://example.org/api/rest/admin/radius-auth-profiles/3"
    },
    "attributes": {
      "name": "auth_profile3",
      "server": "server",
      "port": 1,
      "secret": "secret",
      "reject-on-error": true,
      "timeout": 100,
      "attempts": 2
    }
  }
}