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

Is there an API for querying UCM v8.x End Users?

bobkmak00
Level 1
Level 1

I am trying to find out what APIs might be available for an IVR application to query the list of end users configured on the UCM.

This would be for an auto-attendant type app which would be trying to route calls to specific users, so it would need at minimum a destination phone number to transfer the caller to.

Any pointers to documentation would be appreciated.

Thanks,

Bob Kmak

Convergys

1 Accepted Solution

Accepted Solutions

Aaron Harrison
VIP Alumni
VIP Alumni

Hi Bob

You'd be looking at AXL. Documentation is at developer.cisco.com, log in and from the 'select an API/SDK' box selected Cisco Unified CM Administration XML.

You can use the API to pull specific XML objects containing all user properties (or lists of XML objects in newer CUCMs), or just do quick DB reads (for example 'select * from enduser') and then do what you will with the results.

Regards

Aaron


Please rate helpful posts..

Aaron Please remember to rate helpful posts to identify useful responses, and mark 'Answered' if appropriate!

View solution in original post

2 Replies 2

Aaron Harrison
VIP Alumni
VIP Alumni

Hi Bob

You'd be looking at AXL. Documentation is at developer.cisco.com, log in and from the 'select an API/SDK' box selected Cisco Unified CM Administration XML.

You can use the API to pull specific XML objects containing all user properties (or lists of XML objects in newer CUCMs), or just do quick DB reads (for example 'select * from enduser') and then do what you will with the results.

Regards

Aaron


Please rate helpful posts..

Aaron Please remember to rate helpful posts to identify useful responses, and mark 'Answered' if appropriate!

Aaron,

Thanks!