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://51.11.247.127/api/v6/users/1234

 

Request Body:

{

 "currentPassword": "oldPassword",

 "newPassword": "newPassword"

}

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