PUT Method

The HTTP PUT method is used to update the properties of the resource. New settings are specified in a request body.

For example, to change the description and password of a user, send the following request:

Request:

PUT https://127.0.0.1:11005/api/v1/users/administrator

 

Request Body:

{

 "description": "Dept-01 user",

 "password": "Admin01",

 "oldPassword": "admin"

}

In case of success, the HTTP PUT method returns the 200 response code and updated properties in the response.