Radius Accounting profiles API

create new entry

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

Parameters

Name Description
data[type] Resource type (radius-accounting-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.eyJzdWIiOjE0LCJhdWQiOlsiYWRtaW4iXSwiZXhwIjoxNzQwODUzMDIyfQ.1ABPPiikSVcssGg6y5BlKsdwa3ocni02V2pzwbPGUnU
Host: example.org
Cookie: 

Route

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

Body

{"data":{"type":"radius-accounting-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/"fb0d9ea108110cdea91a3d8ca7232e65"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: b287d687-0db0-462b-97d7-75b9998471db
X-Runtime: 0.017690
Content-Length: 367

Status

201 Created

Body

{
  "data": {
    "id": "4",
    "type": "radius-accounting-profiles",
    "links": {
      "self": "http://example.org/api/rest/admin/radius-accounting-profiles/4"
    },
    "attributes": {
      "name": "name",
      "server": "server",
      "port": 1,
      "secret": "secret",
      "timeout": 100,
      "attempts": 2,
      "enable-start-accounting": false,
      "enable-interim-accounting": false,
      "interim-accounting-interval": 30,
      "enable-stop-accounting": true
    }
  }
}