# Updating user settings Admin only

To update the settings for a specific user, use the following endpoint

PUT /api/user/{userID}

With {userID} being the ID of the user for which to update the settings.

The body of the request must be a JSON object with the following format:

{
    "profileOverride":3
}

This will update the user settings to the desired values

On success the response will be true. On failure the response will be the default API error response.