Update callForwardAll in a Line
Problem
Your want to set or clear a phone number for the CallForwardAll of a given Directory Number
Solution
Cisco UC Manager Version: 8.6
Use the updateLine AXL API to update a line info to Unified Communications Manager.
Step: 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>
