Update user settings
PUT
/v1/users/self/settings
const url = 'https://example.com/api/v1/users/self/settings';const options = { method: 'PUT', headers: {Authorization: '<Authorization>', 'Content-Type': 'application/json'}, body: '{}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request PUT \ --url https://example.com/api/v1/users/self/settings \ --header 'Authorization: <Authorization>' \ --header 'Content-Type: application/json' \ --data '{}'Authorizations
Section titled “Authorizations ”Request Body required
Section titled “Request Body required ”Settings Data
Media type application/json
object
key
additional properties
any
Example generated
{}Responses
Section titled “ Responses ”OK
Media type application/json
object
item
item
object
key
additional properties
any
Example generated
{ "item": {}}