cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
910
Views
1
Helpful
2
Replies

Activate Forward by api

KandyOtero
Level 1
Level 1

Hi

is possible enable/disable the forward function via API on UCCM, for example using Phone Services XML?

Best Regards

1 Accepted Solution

Accepted Solutions

KandyOtero
Level 1
Level 1

I found it :-)

I need to use axl

Administrative XML (AXL) Developer Cookbook

(https://developer.cisco.com/media/axl-cookbook/updateLine.html)

<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:updateLine sequence="?">

         <pattern>DN Number</pattern>

            <callForwardAll>

                <destination>123456</destination>

            </callForwardAll>

    </ns:updateLine>

   </soapenv:Body>

</soapenv:Envelope>

Works fine for me, tested with SOAPUI, you need set the basic authentication.

Best Regards Kandy

View solution in original post

2 Replies 2

amoherek
Cisco Employee
Cisco Employee

Hi Kandy,

Are you referring to these settings in CUCM?

call_forward.jpg

KandyOtero
Level 1
Level 1

I found it :-)

I need to use axl

Administrative XML (AXL) Developer Cookbook

(https://developer.cisco.com/media/axl-cookbook/updateLine.html)

<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:updateLine sequence="?">

         <pattern>DN Number</pattern>

            <callForwardAll>

                <destination>123456</destination>

            </callForwardAll>

    </ns:updateLine>

   </soapenv:Body>

</soapenv:Envelope>

Works fine for me, tested with SOAPUI, you need set the basic authentication.

Best Regards Kandy