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://123.123.123.123:13140/api/v1/users/administrator

 

Request Body:

{

 "description": "Dept-01 user"

}

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