cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
6224
Views
0
Helpful
4
Replies

SQL Query via AXL on CUCM 11.5

alan.giadosh1
Level 1
Level 1

Hello, when I execute a SQL query via AXL API on CUCM 11.5 using python 3.x HEX values are returned , is there documentation somewhere on how to retrieve the values?  I like to use the API not CLI method

 

the CLI method works as expected(the SQL gives configured counts per Device Pool)

 

SQL statement: 

select count(d.name), dp.name as DevicePool from Device as d inner join DevicePool as dp on d.fkDevicePool=dp.pkid group by dp.name

 

via cli result:


(count) devicepool
======= ==========
35 Default

 

VIA AXL:

via axl [<Element count at 0x1a9c58bae00>, <Element devicepool at 0x1a9c58bad80>]

 

thanks