Versions Compared

Key

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

...

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

ParameterRequiredTypeDescription
${returnType}Yesstring
Specifies the format in which data should be returned. The format can be one of the following: json, csv, xlsx, or pdf.fieldsVisibility Nojson/string
Specifies field visibility settings, for example:
Code Block
linenumberstrue
{ "fid": "1", "fv": "1", "ftype": "1", "lsn": "1", "vn": "1", "gtn": "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 XLSX. 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 XLSX types. If provided, it cannot be left empty.filterNojson/string

Applies filtering to narrow down the results.

To filter by a string column, use the following format: 

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

To filter by a numeric column, use the following format: 

Code Block
linenumberstrue
[
    {
        "type": "numeric",
        "comparison": "${gt | lt | eq}",
        "field": "${fid | lsid}",
        "value": "${value}"
    }
]
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.orderByNostring

Specifies 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.

Response

The following code block shows an example result of a successful request.

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

where the response fields can be explained as follows:

...

Error message returned on failure.

...

Error code for unsuccessful request.

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.Yes
ftypeFeature Typeenumeration
See feature type descriptions for details.
Yes
fvFeature VersionstringFeature version.Yes
lsidLicense Server IDintegerInternal License Statistics identification of license server hosting the feature.
Minus (-)No
lsnLicense Serverstring
Name of license server hosting the feature.Yes
vnVendorstringVendor of license server hosting the feature.Yes
gtnGatheringenumerationGathering type of license server hosting the feature. See gathering type descriptions for further details.
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. 

...

The following example shows a command that obtains feature information, filtered by name and version and output to CSV format.

...