Get user's licenses

The GET /users/{userId}/licenses endpoint gets a list of all licenses for the user matching the user ID provided.

In this page


Most URLs in the example code use the following values:

Headers

Header parameters in Requests (User Admin API) apply to this endpoint.

Authorization scopes supported:

ScopeAccess granted
users:readEntire endpoint
users:writeEntire endpoint

Parameters

The endpoint accepts the following query parameters:

userID

Type

Required

Example

StringTrue2f9207ca-8922-4245-bfc5-d8f42939e29a

The user ID of the required user.

Requests

Request user's linked skills

curl -L -X GET "https://***.api.newvoicemedia.com/useradmin/users/8e22b1fe-d2ea-403d-8c03-50eb21188e79/licenses" \
-H "Accept: application/vnd.newvoicemedia.v4+json" \
-H "Authorization: Bearer <ACCESS_TOKEN>"

Responses

Responses contain a list of all licenses for the user matching the user ID provided.

Successful response

Successful requests return a 200 Success code and a collection of s.

Example response

{
  "licenseTypes": {
    "analytics": "creator",
    "krispnoisecancellation": "none"
  }
}

where:

  • userId. The unique ID of the user.
  • licenseTypes. The license types assigned to the user.
    • analytics. The type of the analytics license.
    • krispnoisecancellation. The type of the krispnoisecancellation license.


Try it out

  

For information, see Trying out Vonage Contact Center APIs.