Get Configurations
Retrieves the specified settings of the device. They are described in Configuration Parameters. The HTTP method used is POST and the contentType is application/json.
POST /get_configuration.fcgi
Parameters
- The parameter will be a JSON Object corresponding to the requested configuration parameters.
Response
- The response will be a JSON Object corresponding to the requested settings parameters.
Request Example
Get the beep sound and the activation time for relay 1:
$.ajax({
url: "/get_configuration.fcgi?session=" + session,
type: 'POST',
contentType: 'application/json',
data: JSON.stringify({
general: ["beep_enabled", "relay1_timeout"]
})
});