This page refers to functionality that has been removed from License Statistics. This information no longer applies to License Statistics v6.3 and newer.

The Current Users endpoint delivers license usage metrics specific to the Current Users report, allowing you to see currently active users and the features they are using.

Obtaining information about current users

You can easily list users who are currently using at least one license by sending the following HTTP request.

GET /api/v1/report/users/current/${returnType}

where $ indicates a variable value that you can replace with a value that best suits your needs. The possible parameters are described below.

Parameter
Required
Type
Description
${returnType}YesstringStandard format option. See Making an API request page for details.
standard report optionsNovarious

Refer to Making an API request page for details.

Response

On success, this report will contain one row for each license session. Each row consists of the following columns.

Column
Full name
Type
DescriptionVisible by default in export
uidUser IdintegerInternal License Statistics identification of user that checked out licenses.(tick) Yes

un

User

string

Name of user that checked out licenses.(tick) Yes

hn

Host

string

Host on which licenses were checked out.(tick) Yes
fidFeature IdintegerInternal License Statistics identification of the used feature.(tick) Yes
fnsFeature NamestringName of the used feature.(tick) Yes
fvFeature VersionstringVersion of the used feature.(tick) Yes
ftypeFeature TypeenumerationType of the used feature. See feature type descriptions for further details.(tick) Yes

lus

Used

integer

Total number of licenses used by user on host.(tick) Yes

lco

Checked Out

date and time

Time when licenses were checked out.(tick) Yes
lsid

License Server Id

integerInternal License Statistics identification of server hosting the used feature.(tick) Yes
lsnLicense ServerstringName of server hosting the used feature.(tick) Yes

Note that the order in the table is the default order of the columns in the exported file.

Obtaining information about current license usage

You can easily list users that are currently using at least one license by sending the following HTTP request.

GET /api/v1/report/users/license/current-usage/json

This report supports only JSON format.

This report does not support standard options (filtering, limiting or ordering).

Response

On success, the license server will return the following response.

{
  "success": true,
  "msg": null,
  "data": {
    "current": ${current},
    "licenseUsage": ${licenseUsage},
    "licenseLimit": ${licensedUsers}
  }
}


Field
Type
Description
currentinteger
Number of users or user-hosts that are currently using any license on any currently monitored license server.
licenseUsageintegerNumber of users or user-hosts that are counted for license usage. This value depends on the licensing model.
licenseLimitintegerNumber of users or users-hosts that this license server is licensed for.

Obtaining information about highest license usage

You can easily list the 10 users that are using the highest number of licenses by sending the following HTTP request.

GET /api/v1/report/users/license/highest-usage/json

This report supports only JSON format.

This report does not support standard options (filtering, limiting or ordering).

Response

On success, this report will contain up to 10 rows of information about users with the highest number of checked out licenses. Each row consists of the following columns.

Field
Full name
Type
Description
unUserstringUser name.
lusUsedintegerNumber of all licenses used by the user.