ā02-04-2016 10:51 AM
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) )
Solved! Go to Solution.
ā02-22-2016 05:44 PM
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
ā02-22-2016 05:44 PM
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
ā02-25-2016 08:49 AM
consecutiveRingSetting <-- this was key
Not sure why the names are so different from the GUI
thanks Thuy Doan
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide