get https://{hostname}/settings/get
Returns the value associated with a settings key. If the key has no value at the client scope the application scope value is returned instead. It returns null
if the key has no application value.
Response
Returns the value associated with a settings key. If the key has no value at the client scope the application scope value is returned instead. It returns null
if the key has no application value.
xxxxxxxxxx
curl --request GET \
--url https://hostname/settings/get \
--header 'accept: application/json' \
--header 'content-type: application/x-www-form-urlencoded'
xxxxxxxxxx
{
"result": "Jay",
"stat": "ok"
}