This is an archive version of the document. To get the most up-to-date information, see the current version.

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/v7/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.

Page updated 2/23/2024

Page content applies to build 7.1.0.22