Blogs

Showing 6 results.
Items per Page 20
of 1

Forums

« Back to IP Phone Services Questions

AXL API CUCM 8.5 ListUser method - How display the list of all users ?

Combination View Flat View Tree View
Threads [ Previous | Next ]
Hello, I need help emoticon I would like collect some information to write the list of all users in a file.

My script works in version 6.1 but I not in version 8.5.
First I generate the new AXLAPIservices.cs file
Edit and replace the old method by the new one.
But now I have an issue with the wildcard to search "any users"
See below a piece of code.
Thanks for your help.
  Dim axl As AXLAPIService = New AXLAPIService()
 
        Dim req As ListUserReq
        Dim res As ListUserRes

        'List User Name
        req = New ListUserReq
        req.returnedTags.firstName = "%"                           <<< Error see in attachment (Works in CUCM version 6.1)
        req.returnedTags.lastName = "%"
        res = axl.listUser(req)
 
        For Each user As LUser In res.return
            message = message + user.firstName
        Next  
Attachments:

Collateral


No files available