Dell Technologies ECS REST API

Search (SHIFT+S)




Change Password

PUT /user/password

Sets local user password for the specified user identifier.


Required Roles

This call has no restrictions.


Prerequisites

The following conditions must be met in order to call this operation.

  • The user should know the current password which user intends to change


Request Payload

All parameters are required unless otherwise stated.

Field Description Type Notes
mgmt_user_password_update
password password for the management user String
oldPassword old password for the management user String

Response Body

Response indicating Success or Failure to update local user information


Examples

Request
PUT https://192.168.0.0:4443/user/password

Content-Type: application/xml
X-SDS-AUTH-TOKEN: <AUTH_TOKEN>

<mgmt_user_password_update>
   <oldPassword>OldPassword@123</oldPassword>
  <password>NewPassword@12345</password>
</mgmt_user_password_update>
Response
HTTP/1.1 200 OK
Content-Type: application/xml