Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


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

Obtaining a feature list

You can easily list To list all the features recognizable by License Statistics , use one of by sending the following HTTP request:.

Code Block
languagejs
firstline1
GET /api/v1/feature/${returnType}

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

ParameterRequiredTypeDescription
${returnType}Yesstring
Specifies the format in which license usage data should be returned. The format can be one of the following: json, csv, xls or pdf.fnsNostringApplies quick filtering on a feature name.fvNostringApplies quick filtering on a feature version.ftypeNostringApplies quick filtering on a feature type.lsnNostringApplies quick filtering on a license server name.vnNostringApplies quick filtering on a license server vendor name.gtnNostringApplies quick filtering on a license server gathering type.filterNojson/string

Applies filtering license usage data on all fields. To filter your data, use the following format:

Code Block
languagejs
firstline1
linenumberstrue
[{"type": "${string | numeric}", "value": stringOrNumericValue, "field": "${fid | fns | fv | ftype | lsid | lsn | vn | gtn}"}]
limitNointegerSpecifies the number of records that must be returned. The value must be greater than zero.offsetNointegerSpecifies the offset of the first row to return.orderByNostringSpecifies the field by which you want to order your data records. The field name can be one of the following: fid,fns, fv, ftype, lsid, lsn, vn, gtn.orderDirectionNostringDetermines whether the sorting results will be displayed in ascending (ASC) or descending (DESC) order.

 

Note: By default, filter rules are case-insensitive.

There is also another, already deprecated, endpoint that you can use:

Code Block
languagejs
firstline1
GET /api/v1/report/feature/${returnType}

...

Standard format option. See Making an API request for details.
standard report optionsNovarious

See Making an API request for details.

Response

On success, report will contain one row for each feature recognizable by License Statistics. Each row consists of columns: 


ColumnFull nameTypeDescriptionVisible by default in export
fidFeature IDintegerInternal License Statistics identification of the feature.(minus)No
fnsFeature NamestringFeature name.(tick)Yes
ftypeFeature Typeenumeration
See feature type descriptions for details.
(tick)Yes
fvFeature VersionstringFeature version.(tick)Yes
lsidLicense Server IDintegerInternal License Statistics identification of license server hosting the feature.
(minus)No
lsnLicense Serverstring
Name of license server hosting the feature.(tick)Yes
vnVendorstringVendor of license server hosting the feature.(tick)Yes
gtnGatheringenumerationGathering type of license server hosting the feature. See gathering type descriptions for further details.
(tick)Yes

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

Examples 

The following examples make use of the GET method. 

Example 1

The following example shows a command that gets the list of all License Statistics features.

...

Applies filtering license usage data on all fields. To filter your data, use the following format:

Code Block
languagejs
firstline1
linenumberstrue
[{"type": "${string | numeric}", "value": stringOrNumericValue, "field": "${fid | fns | fv | ftype | lsid | lsn | vn | gtn}"}]

...

Note: By default, filter rules are case-insensitive.

Response

The response you get may be similar to the following:

Code Block
languagejs
firstline1
linenumberstrue
{
success: true, 
msg: ${message}, 
data: [{
  fid: ${featureId}, 
  fns: ${featureName},
  fv: ${featureVersion},
  ftype: ${featureType},
  lsid: ${licenseServerId},
  lsn: ${licenseServerName},
  vn: ${licenseServerVendorName},
  gtn: ${licenseServerGatheringType}
}]
}

where the response fields can be explained as follows:

...

Examples

The following examples make use of GET method.

- To get the list of all License Statistics features, type the following from a command line:

Code Block
languagejs
firstline1
curl -H "X-Auth-token: token" "http://yourdomain/api/v1/report/feature/json"

 Example 2

The following example shows a command that obtains - To obtain feature information, filtered by name , and version and type, enter the following command:output to CSV format.

Code Block
languagejs
firstline1
curl --data "fns=a&fv=2.1&ftype=floating" filter=[{\"type\"=\"string\", \"field\"=\"fn\", \"value\"=\"abc\"}, {\"type\"=\"string\", \"field\"=\"fv\", \"value\"=\"2.1\"}]" 
-H "X-Auth-token: token" "http://yourdomain/api/v1/report/feature/jsoncsv"

Example 3

 The following example shows a command that gets information about a feature with an ID of "1."- To get feature information filtered by Id, enter the following command:

Code Block
languagejs
firstline1
curl --data-urlencode "filter=[{\"valuetype\"=\"numeric\": 1, \"field\"=\"fid\", \"fieldcomparison\"=\"eq\": \"value\"fid=\"1\"}]" -H "X-Auth-token: token" "http://yourdomain/api/v1/report/feature/json"