Update a User's Password/PIN
Problem
Your application needs to reset a user's password and/or PIN
Solution
Cisco UC Manager Version: 8.5
Use the updateUser AXL API to update a user's password or PIN to Unified Communications Manager.
Step 1: Update the user and specify required and optional information.
The User ID or UUID is the only required field. To update the user's password, enter the new password in the <password> and/or <pin> elements. The updateUser response returns the uuid of the user.
updateUser
Request Response
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.cisco.com/AXL/API/8.5"> <soapenv:Header/> <soapenv:Body> <ns:updateUser sequence="?"> <userid>enduser1</userid> <password>123456</password> <pin>123456</pin> </ns:updateUser> </soapenv:Body> </soapenv:Envelope>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> <soapenv:Body> <ns:updateUserResponse xmlns:ns="http://www.cisco.com/AXL/API/8.5"> <return>{E532FBDA-D575-B641-E101-71822F4BF84B}</return> </ns:updateUserResponse> </soapenv:Body> </soapenv:Envelope>