POST /updateSettings

The /updateSettings endpoint allows you to update various report settings.

Request
curl -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
The authorization token that must be passed to the request for authorization.
The header value is the concatenation of:
authHeader = LOGIN:TOKEN
Accept
application/json
reportingLimiterDefault - Optional
integer
Minimum number of messages to send a report. If the number of messages is lower than this limit, the report will not be sent.
reportingLimiterMaximum - Optional
integer
Maximum number of messages for which you can choose to send reports. You will not be able to set a number of messages higher than this value.
reportingTriggerDefault - Optional
integer
Maximum number of messages displayed in the report. If the number of messages exceeds this limit, a second report will be sent.
reportingTriggerMinimum - Optional
integer
Minimum number of messages per report.
Response
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.