Web API: Usersettings
Jump to navigation
Jump to search
The usersettings operation saves user specific settings to server. The PUT version is used to store an individual setting and the POST version to store multiple settings.
HTTP request header Authorization with value Bearer <access token> needs to be in place to identify the session.
PUT /api/usersettings/{key}/{value}
Stores individual setting to the server.
Url: PUT /api/usersettings/{key}/{value}
The key is the setting name and value is the setting value.
Returns HTTP code 204 (No content).
POST /api/usersettings/
Stores multiple settings to the server. Settings that are not mentioned, are not removed.
Url: POST /api/usersettings/
The request body contains an object that has properties for all the stored settings.
Returns HTTP code 204 (No content).