Radius Auth profiles API

create new entry

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

Parameters

Name Description
data[type] Resource type (radius-auth-profiles)
data[attributes][name] Name
data[attributes][server] Server
data[attributes][port] Port
data[attributes][secret] Secret
data[attributes][timeout] Timeout
data[attributes][attempts] Attempts
data[attributes][enable-start-accounting] Enable start accounting
data[attributes][enable-interim-accounting] Enable interim accounting
data[attributes][interim-accounting-interval] Interim accounting interval
data[attributes][enable-stop-accounting] Enable stop accounting

Request

Headers

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

Route

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

Body

{"data":{"type":"radius-auth-profiles","attributes":{"name":"name","server":"server","port":"1","secret":"secret","timeout":100,"attempts":2}}}

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/"838c4aece7af677b998cdf8e921fa4ec"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: 18a6e92e-6238-4fa5-ade3-238531974d68
X-Runtime: 0.015596
Content-Length: 249

Status

201 Created

Body

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