You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

License Statistics API allows you to obtain information about Currently Borrowed Licenses report.

Obtaining information about borrowed licenses

To list licenses that are currently borrowed, usefollowing URL template

GET /api/v1/report/license-server/${licenseServerId}/borrowed-licenses/${returnType}

 

where:

 

- $ indicates a variable value that you can replace with a proper value, according to your needs

 

- the possible parameters are as follows:

 

Parameter
Required
Type
Description
${licenseServerId}Yesinteger/stringId of license server of interest, or string "all" to get information from all servers.
${returnType}YesstringSpecifies the format in which the data should be returned. The format can be one of the following: json, csv, xls or pdf.
fieldsVisibility Nojson/string

Specifies field visibility settings, for example:

{ "lsid": "1", "lsn": "1", "fid": "1", "fns": "1", "fv": "1", "ftype": "1", "lus": "1", "lco": "1", "lbe": "1", "uid": "1", "un": "1", "hn": "1"}

where number "1" indicates that a specific field is visible.

Note that the order of the settings you make is important – when exported, the fields will be visible in exactly the same order you specify here.

rnNostringSpecifies the name of the report that will be displayed once the report has been exported to PDF or XLS. For CSV and JSON formats this parameter will be ignored.
If you don't pass this parameter, it will be generated automatically for PDF and XLS types. If provided, it cannot be left empty.
filterNojson/string

Applies filtering license usage data on all fields.

To filter by string column, use the following format: 

 

[
    {
        "type": "string",
        "field": ""${lsn | fns | fv | ftype | lco | lbe | un | hn}",
        "value": "${value}"
    }
]

To filter by numeric column, use the following format: 

[
    {
        "type": "numeric",
        "comparison": "${gt | lt | eq}",
        "field": "${lsid | fid | lus | uid}",
        "value": "${value}"
    }
]


limitNointegerDetermines the maximum number of data records that can be returned. The value must be greater than zero.
offsetNointegerSpecifies the offset of the first row to return.
orderByNostring

Specifies the field by which you want to order your data records. The field name can be one of the following: lsid, lsn, fid, fns, fv, ftype, lus, lco, lbe, uid, un, hn.

orderDirectionNostringDetermines whether the sorting results will be displayed in an ascending (ASC) or a descending (DESC) order.

 

If your request is successful, you should see a response similar to the following: 

{
    success: ${success},
    msg: ${message},
    data: [{
        "lsid": ${licenseServerId},
        "lsn": ${licenseServerName},
        "fid": ${featureId},
        "fns": ${featureName},
        "fv": ${featureVersion},
        "ftype": ${featureType},
        "lus": ${licensesUsed},
        "lco": ${checkoutTime},
        "lbe": ${borrowExpire},
        "uid": ${userId},
        "un": ${userName},
        "hn": ${hostName},
        "uil": ${ldapUser},
    }],
    "code": ${errorCode},
    "totalCount": ${totalCount}
}

where the response fields can be explained as follows:

 

Field
Type
Description
lsidintegerLicense Server ID.
lsnstringLicense Server name.
fidintegerFeature ID.
fnsstringFeature Name.
ftypestringFeature type.
fvstringFeature version.

lus

integer

Total number of licenses used by user on host.

lco

string

Date when license was checked out, in 'YYYY-MM-DD HH:MM' format.

lbe

string

Borrow expiration date, in 'YYYY-MM-DD HH:MM' format.

uidintegerUser ID.

un

string

Username.

hn

string

Hostname.

uil

boolean

Indicates whether user details have been imported from an LDAP directory. Note that you cannot filter and order data by this field.

msg

string

Error message returned on failure.

success

boolean

Indicates whether the API request was successfully processed. 

codeinteger

Error code for unsuccessful request.

totalCountinteger

Total number of all matching results.

Example

 If you want to obtain information about currently borrowed licenses on all servers in CSV format, enter a command similar to this one:

curl -H "X-Auth-token: token" "http://yourdomain/api/v1/report/license-server/all/borrowed-licenses/csv
  • No labels