Update Line Description

Problem

You want to update a line's description and alerting name for a line associated with a device profile.

Solution

Cisco UC Manager Version: 9.0

Use the updateLine AXL API to update a line info to Unified Communications Manager. It does not matter if the line is associated to a device profile or not. The step remain the same.

Step 1: Update the line with required information.

The <pattern> is the only required field that indicates the DN you are trying to update.

  • To update the line's description, enter the new description in the <description>
  • To update the line's alerting name, enter the new alerting name in the <alertingName>
The updateLine response returns the uuid of the line.
updateLine
Request Response
					<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.cisco.com/AXL/API/9.0">
                       <soapenv:Header/>
                       <soapenv:Body>
                          <ns:updateLine sequence="?">
                             <pattern>4000</pattern>
                             <description>Adrienne's Office Phone</description>
                             <alertingName>Adrienne</alertingName>
                        </ns:updateLine>
                       </soapenv:Body>
                    </soapenv:Envelope>
                        
                    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
                       <soapenv:Body>
                          <ns:updateLineResponse xmlns:ns="http://www.cisco.com/AXL/API/9.0">
                             <return>{FC6F5923-7F4C-CDCD-69F3-0FDA4B8D9C0F}</return>
                          </ns:updateLineResponse>
                       </soapenv:Body>
                    </soapenv:Envelope>