Skip to main content

Update a user record

PUT 

/users/:userId

Update (modify) a user record by their internal ID. This will update the user record with the new data provided in the request body.

As with all PUT modifications, you must include the If-Match header with the current ETag value of the user record or the request will fail with a "412 Precondition Failed" status code. The ETag value can be obtained by retrieving the item with a GET request and examining the ETag header in the response.

Required abilities

This operation requires the User - Modify ability, or Authority - Administrator.

Request

Responses

The object was successfully updated. The response body is empty. See the Location header for the URL of the updated object.

Response Headers
    Location

    The URL of the updated or modified object.