modifyPasswordRequest

Modifies a user’s password.

Request

<modifyPasswordRequest>
   <old type="string"/>
   <new type="string"/>
</modifyPasswordRequest>

Response

<modifyPasswordResponse>
   <status type="types:Status"/>
</modifyPasswordResponse>

Elements

old

Specifies the text of the old password.

new

Specifies the text of the new password.

code

Returns the error number related to the event. 0 indicates that the request was successful.

status

Returns the success or failure of the method.

Example

<modifyPasswordRequest> 
   <old>u1</old> 
   <new>new</new> 
</modifyPasswordRequest>

<modifyPasswordResponse> 
   <status> 
      <code>0</code> 
   </status> 
</modifyPasswordResponse>