Versions Compared

Key

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

...

ParameterRequiredTypeDescription
${featureId}Yesinteger

Specifies feature-specific parameters.

${returnType}YesstringSpecifies the format in which license usage data will be returned. The format can be one of the following: json, csv, xls, xlsx or pdf.
sdYesstringSpecifies the start date for which the report will be generated in YYYY-MM-DD format; for example, 2017-01-20.
edYesstringSpecifies the end date for which the report will be generated in YYYY-MM-DD format; for example, 2017-01-27.
gratYesinteger

Specifies granularity of the returned data, which can be one of the following:

  • Quarter - 2
  • Month - 3
  • Week - 4
  • Day - 5
  • Hour - 6
agrtNointeger

Specifies aggregation type of the returned data, which can be one of the following:

  • Username - 1
  • Hostname - 2
  • Username and hostname - 3
  • Usergroup - 4
  • Hostgroup - 5

By default data is aggregated by username and hostname

rn

No

string

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

Code Block
languagejs
[
	{ 
		"type": "string",
		"field": "lud",
		"value": "${value}"
	}
]

To filter by numeric column, use the following format:

Code Block
languagejs
[
	{ 
		"type": "numeric", 
		"comparison": "${gt | lt | eq}", 
		"field": "${fud | un | hn | lsn | fns | fv | ftype | musage | hu | mu | hb | mb}",
		"value": "${value}" 
	}
]


fieldsVisibilityNojson/string

Specifies field visibility settings, like this:

Code Block
languagejs
{ 
	"fud": "1", 
	"un": "1", 
	"hn": "1", 
	"lsn": "1", 
	"fns": "1", 
	"fv": "1", 
	"ftype": "1", 
	"musage": "1", 
	"hu": "1", 
	"mu": "1", 
	"hb": "1", 
	"mb": "1"
}

where "1" indicates that a specific field is visible and ''0" indicates that it is not.

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.

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:

ludfud | un | luminhn | lualsn | lumaxfns | lbminfv | lbmaxftype | ldtcmusage | hu | mu | hb | ftmb
orderDirectionNostringDetermines whether the sorting results will be displayed in ascending (ASC) or descending (DESC) order.

...

Code Block
languagejs
{
	"success": ${success},
  	"msg": ${message},
  	"data": [
    	{
      		
			"fid": ${featureId},
      		
			"ludlsid": ${datelicenseServerId},
      	
			"luminuid": ${minUseduserId},
      			"luauil": ${averageUseduserIsLdap},
      		"lumaxfud": ${maxUseddate},
      		
			"lbminun": ${minBorrowedusername},
      		
			"lbmaxhn": ${maxBorrowedhostname},
      		"ldtclsn": ${denialslicenseServerName},
      		"hufns": ${hoursUsedfeatureName},
      		"ftfv": ${totalfeatureVersion},
      		"ftype": ${featureType},
    	],
  		"codemusage": ${codemaxUsage},
      		"totalCounthu": ${hoursUsed},
      		"mu": ${maxUsed},
      		"hb": ${hoursBorrowed},
      		"mb": ${maxBorrowed}
    	}
  	],
  	"code": ${code},
  	"totalCount": ${count}
}

where the response fields can be explained as follows:

FieldTypeDescription
successbooleanIndicates that your API request was successfully processed.
msgstringError message returned on failure.
fid
integerFeature ID.lud
integerFeature ID.
lsidintegerLicense server ID.
uidintegerUser ID.
uilbooleanInformation if user is managed by LDAP.
fudstring

Indicates period of time for which usage information is generated, i.e. date and time for hourly usage and dates for the remaining granularity options.


luminintegerMinimal licenses used count for given date.luafloatAverage licenses used count for given date.lumax


unstringUsername.
hnstringHostname.
lsnstringLicense server name.
fnsstringFeature name.
fvstringFeature version.
ftypestringFeature type.
musagefloatMaximum usage of licenses in relation to total license number, expressed in percentages.
hufloatHours used.
muintegerMaximum licenses used count for given date.
lbmin
hb
integer
float
Minimal licenses borrowed count for given date
Hours borrowed.
lbmax
mbintegerMaximum licenses borrowed count for given date
.

ldtc

integerDenials count.hufloatHours used.ftintegerFeature total
.
codeinteger

Error code if success equals false, null otherwise.

totalCountintegerTotal number of rows returned.

Obtaining information about usage history comparison for features

...