Versions Compared

Key

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

...

ParameterRequiredTypeDescription
licenseServerIdYesinteger/stringID of the license server or 'all' string for all license servers.
sdNostringSpecifies the start date for which the report will be generated. The date format is in YYYY-MM-DD format; for example, 2017-0105-20. If neither this field, nor "ed" is provided, it defaults to today.
edNostringSpecifies the end date for which the report will be generated. The date format is in YYYY-MM-DD format; for example, 2017-0105-27. If neither this field, nor "sd" is provided, it defaults to [today + 12 months].
granularityNointegerSpecifies granularity of the returned data, and can be one of the following:
  • Quarter - 2
  • Month - 3
  • Week - 4
  • Day - 5

By default, this parameter is set to show monthly statistics.

filterNostring

Applies filtering license usage data on all fields.

To filter by string column, use the following format: 

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

To filter by numeric column, use the following format:

Code Block
languagejs
firstline1
linenumberstrue
[
	{ 
		"type": "numeric", 
		"comparison": "${gt | lt | eq}", 
		"field": "${fid | lsid}",
		"value": "${value}" 
	}
]

...