cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
780
Views
0
Helpful
2
Replies

cucm axl updatelinegroup

magictrip18
Level 1
Level 1

im using this request

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.cisco.com/AXL/API/10.5">

  <soapenv:Header/>

  <soapenv:Body>

    <ns:updateLineGroup>

        <uuid>35c7b6ca-3378-4ddb-688b-97d5f6d8aeeb</uuid>

        <addMembers></addMembers>

        <member>4545</member>

    </ns:updateLineGroup>

  </soapenv:Body>

</soapenv:Envelope>

cucm send success, but is not adding the new member to the line group

2 Replies 2

Geevarghese Cheria
Cisco Employee
Cisco Employee

Hi Carlos,

  Moving your question under AXL community group for more visibility of support engineers. Please find this url -Re: How to find out Membership of Lines in Line Groups with AXL  for related information.

Thanks and Regards,

Geevarghese

Using soapUI to autogenerate a template <updateLineGroup> request, I was able to get this format working:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.cisco.com/AXL/API/10.5">

   <soapenv:Header/>

   <soapenv:Body>

      <ns:updateLineGroup sequence="1">

         <uuid>{EA2432B4-655C-D640-40CA-551C044EA596}</uuid>

         <members>

           <member>

             <lineSelectionOrder>0</lineSelectionOrder>

             <directoryNumber>

               <pattern>1000</pattern>

               <routePartitionName/>

             </directoryNumber>

           </member>

         </members>

      </ns:updateLineGroup>

   </soapenv:Body>

</soapenv:Envelope>