/mcpIn Cisco Unity Connection 10.0(1) and later, TenantId in API response is available in Tenant Partitioning. Note Listing the Users with Their License Details Perform a GET operation to list the users along with their license details: Get https://<connection-server>/vmrest/userlicenses The following is the response from the above GET request and the actual response will depend upon the information given by you: <UserLicenses total="2"> <UserLicense> <Alias>user1@Tenant1.com</Alias> <Messaging>Basic</Messaging> <SpeechView>Speech View Pro</SpeechView> <TenantId>Tenant1</TenantId> </UserLicense> <UserLicense> <Alias>user2@Tenant1.com</Alias> <Messaging>Basic</Messaging> <SpeechView>Speech View Pro</SpeechView> <TenantId>Tenant1</TenantId> </UserLicense> </UserLicenses> Response Code: 200 JSON Example To list all the users along with their license details, use the following: Request URI: GET https://<connection-server>/vmrest/userlicenses Accept: application /json Connection: keep-alive The following is the response from the above GET request and the actual response will depend upon the information given by you: { "@total": "2", "UserLicense": [ { "Alias": "user1@Tenant1.com", "Messaging": "Basic", "TenantId": "Tenant1" }, { "Alias": "user2@Tenant1.com", "Messaging": "Basic", "TenantId": "Tenant1" } ] } Cisco Unity Connection Provisioning Interface (CUPI) API 224 License Users Entitlement Listing the Users with Their License Details
