Reset settings

Resets the device's settings to the factory default settings values. A factory reset erases all the user information and recovers the device to the factory state. The HTTP method used is the POST.

POST /reset_to_factory_default.fcgi

Parameters

  • keep_network_info (bool): If set as True, the network's settings will be kept.

Response

  • This request has no response.

Request example

Resets the device to the factory settings:

$.ajax({
    url: "/reset_to_factory_default.fcgi?session=" + session,
    type: 'POST',
    contentType: 'application/json'
});