POST /updateSettings
The /updateSettings endpoint allows you to update various report settings.
Requestcurl -X POST \
'https://cloud.vadesecure.com/rest/v3.0/oems/OEM_LOGIN/user/USER_LOGIN/updateSettings' \
-H 'x-vrc-authorization: LOGIN:TOKEN' \
-H 'Content-type: application/json' \
--data '{
"reportingLimiterDefault": 3,
"reportingLimiterMaximum": 50,
"reportingTriggerDefault": 42,
"reportingTriggerMinimum": 4
}'; echo
- x-vrc-authorization - Required
- string
- Accept
- application/json
- reportingLimiterDefault - Optional
- integer
- reportingLimiterMaximum - Optional
- integer
- reportingTriggerDefault - Optional
- integer
- reportingTriggerMinimum - Optional
- integer
-
200
OK
application/json
- The response body contains a JSON blob which can be parsed to retrieve the Account ID. 400 Error application/json
- In case an error occurred, a 400 error is returned along with a JSON
object containing a description of the error, typically:
{"error": "error description"}
401
Unauthorized
application/json
- There was a problem authenticating your request.