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

Compare with Current View Page History

« Previous Version 10 Next »

To obtain information about the License Statistics features, use the following request:

GET /api/report/feature/${returnType}

where the possible parameters are as follows:

ParameterRequiredTypeDescription
${returnType}YesstringSpecifies 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:

[{"value": intOrString, "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.
orderByNostringSorts license usage data by one of the following column names: 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.

Response

{
success: true, 
message: ${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:

FieldTypeDescription
fidintegerFeature Id.
fnsstringFeature name.
fvstringFeature version.
ftypestringFeature type (Floating, Nodelocked or Token).
lsidintegerLicense server Id.
lsnbooleanLicense server name.
vnstringLicense server vendor name.
gtnstringGathering type (imported, realtime).
messagestringUnlimited string.

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:

curl -H "X-Auth-token: token" "http://yourdomain/api/report/features/json"

 - To obtain feature information filtered by name, version and type, enter the following command:

curl --data="fns=a&fv=2.1&ftype=floating" -H "X-Auth-token: token" "http://yourdomain/api/report/features/json"

- To get feature information filtered by Id, enter the following command:

curl --data-urlencode="filter=[{"value": 1, "field": "fid"}]" -H "X-Auth-token: token" "http://yourdomain/api/report/features/json"


  • No labels