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

AXL API Ring setting (Phone Active) "Beep Only"

Ring setting (Phone Active) "Beep Only" How do i set this in AXL API?

I have found  XPhoneLine.setRingSetting(value); but this only sets for Idle.

Call Manager Version = ( 10.5.2.12901(1) )

setting.jpg

1 Accepted Solution

Accepted Solutions

TDoan
Level 1
Level 1

Hi Brian,

You can use updatePhone (AXL API) to update the ring setting

Example:

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

            <soapenv:Header/>

                <soapenv:Body>

                   <ns:updatePhone sequence="1">

                       <uuid> + ADeviceUId + </uuid>

                         ....

                         ....

                       <Lines>

                          <line>

                            <uuid> + ALineUUId </uuid>

                                  ....

                                  ....

                            <ringSetting>Ring</ringSetting>    ----> You need to set a value here (Ring, Flash Only or Ring One, ...

                                                                                      This is set for Ring Setting (Phone Idle)

                            <consecutiveRingSetting>Beep Only</consecutiveRingSetting>  ---> This is set for Ring Setting (Phone                                                                                                                                       Active)

                                  ....

                          </line>

                       </lines>

                   </ns:updatePhone>

                </soapenv:Body>

         </soapenv:Envelope>

Hope that would help you.

Regards

Thuy Doan

View solution in original post

2 Replies 2

TDoan
Level 1
Level 1

Hi Brian,

You can use updatePhone (AXL API) to update the ring setting

Example:

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

            <soapenv:Header/>

                <soapenv:Body>

                   <ns:updatePhone sequence="1">

                       <uuid> + ADeviceUId + </uuid>

                         ....

                         ....

                       <Lines>

                          <line>

                            <uuid> + ALineUUId </uuid>

                                  ....

                                  ....

                            <ringSetting>Ring</ringSetting>    ----> You need to set a value here (Ring, Flash Only or Ring One, ...

                                                                                      This is set for Ring Setting (Phone Idle)

                            <consecutiveRingSetting>Beep Only</consecutiveRingSetting>  ---> This is set for Ring Setting (Phone                                                                                                                                       Active)

                                  ....

                          </line>

                       </lines>

                   </ns:updatePhone>

                </soapenv:Body>

         </soapenv:Envelope>

Hope that would help you.

Regards

Thuy Doan

consecutiveRingSetting <-- this was key

Not sure why the names are so different from the GUI

thanks Thuy Doan

Getting Started

Find answers to your questions by entering keywords or phrases in the Search bar above. New here? Use these resources to familiarize yourself with the community: