update values
PUT /api/rest/admin/equipment/radius/auth-profiles/:id
Parameters
Name |
Description |
data[type]
|
Resource type (auth-profiles)
|
data[id]
|
Auth profile ID
|
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
Route
PUT /api/rest/admin/equipment/radius/auth-profiles/5
Body
{"data":{"type":"auth-profiles","id":5,"attributes":{"name":"name"}}}
Response
Headers
Status
200 OK
Body
{
"data": {
"id": "5",
"type": "auth-profiles",
"links": {
"self": "http://example.org/api/rest/admin/equipment/radius/auth-profiles/5"
},
"attributes": {
"name": "name",
"server": "server",
"port": 1,
"secret": "secret",
"reject-on-error": true,
"timeout": 100,
"attempts": 2
}
}
}