Versions Compared

Key

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

...

ParameterRequiredTypeDescription
featureIdsYesarrayArrays of feature IDs in the following format: id1, id2, id3... for example fi=1,2,3,5.
sdYesstringSee Obtaining information about usage history for feature, aboveSpecifies the start date for which the report will be generated in YYYY-MM-DD format; for example, 2017-01-20.
edYesstringSee Obtaining information about usage history for feature, aboveSpecifies the end date for which the report will be generated in YYYY-MM-DD format; for example, 2017-01-27.
granularityYesintegerSee Obtaining information about usage history for feature , above. 

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

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

Currently the report is only returned only in JSON syntax. There are plans to introduce CSV, XLS and PDF formats in the future.

...

ParameterRequiredTypeDescription
${lsid}YesintegerLicense Server ID.
${returnType}YesstringSee Obtaining information about usage history for feature, aboveSpecifies the format in which license usage data will be returned. The format can be one of the following: json, csv, xls, xlsx or pdf.
sdYesstringSee Obtaining information about usage history for feature, above Specifies the start date for which the report will be generated in YYYY-MM-DD format; for example, 2017-01-20.
edYesstringSee Obtaining information about usage history for feature, above Specifies the end date for which the report will be generated in YYYY-MM-DD format; for example, 2017-01-27.
granularityYesinteger  

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

 
  • Quarter - 2
  • Month - 3
  • Week - 4
  • Day - 5
  • Hour - 6
rnNostring 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
See Obtaining information about usage history for feature, above.rnNostring See Obtaining information about usage history for feature, above.
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 | fns | fv | ftype}",
		"value": "${value}"
	}
]

To filter by numeric column, use the following format:

Code Block
languagejs
[
	{ 
		"type": "numeric", 
		"field": "${lumin | lua | lumax | lbmin | lbmax | ldtc | hu | ft}",
		"value": "${value}"
	}
]


fieldsVisibilityNojson/string

Specifies field visibility settings, for example:

Code Block
languagejs
{ 
	"lud": "1", 
	"lumin": "1", 
	"lua": "0", 
	"lumax": "1", 
	"lbmin": "1", 
	"lbmax": "1", 
	"ldtc": "1", 
	"hu": "0", 
	"ft": "0",
	"fns": "1",
	"fv": "1",
	"ftype": "1"
}

where "1" indicates that a specific field is visible, ''0" indicates 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.

limitNointegerSee Obtaining information about usage history for feature, above Determines the maximum number of data records that can be returned. The value must be greater than zero.
offsetNointegerSee Obtaining information about usage history for feature, above Specifies 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: 

lud | fns | fv | ftype | fid | lumin | lua | lumax | lbmin | lbmax | ldtc | hu | ft
orderDirectionNostringSee Obtaining information about usage history for feature, above Determines whether the sorting results will be displayed in ascending (ASC) or descending (DESC) order.

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

...