Actions

The /actions URL performs maintenance actions on the device.

URL

/api/v1/actions

HTTP Method

GET

HTTP Response

200 OK

Example

GET /api/v1/actions HTTP/1.1
Host: 10.4.219.229
 
 
HTTP/1.1 200 OK
Content-Type: application/json
{
    "actions": [
        {
            "id": "reset",
            "description": "Reset device",
            "url": "/api/v1/actions/reset"
        },
        {
            "id": "saveConfiguration",
            "description": "Save device configuration to NVRAM",
            "url": "/api/v1/actions/saveConfiguration"
        },
        {
            "id": "authToken",
            "description": "Get authentication token",
            "url": "/api/v1/actions/authToken"
        }
    ]
}