get https://na.connect.etherfax.net/rest/3.0/api/devices?a=setconfig
Allows the remote client to set certain configuration features of the device or quickly enable/disable others.
The following options values are supported:
Option | Description |
---|---|
addr | Sets the local IP address of the device for easier identification in the etherFAX portal. |
encryption | Sets the Encryption Enabled flag. This flag is returned to callers that query route information to determine if a destination has encryption enabled. |
required | Sets the Encryption Required flag (also returned in route information). |
Examples:
.../?a=setconfig&options=encryption:1
.../?a=setconfig&options=addr:192.168.1.32
Multiple options may be set at once for convenience:
...?a=setconfig&options=encryption:1,required:0
Encryption element when performing route query:
{
"Route": "+18562955300",
"Encryption": {
"Enabled": true,
"Required": false,
"PublicKey": "..."
}
}