Licenses
Get a list of licenses updates
This API let’s you to fetch a list of licenses updates with multiple query parameters
get/license_updates
Query parameters
nextTokenstring
Example:eyJsYXN0SXRlbUlkIjogInN0cmluZyIsICJwYWdlU2l6ZSI6IDEyMywgInNvcnRPcmRlciI6ICJhc2MifQ==
Pagination token used as a marker to get records from next page.
account_idstring
Example:1234
Filter option to filter based on account id.
pageSizeinteger
Example:10
Maximum page size expected by client to return the record list.
NOTE: Max page size cannot be more than 50. Also 50 is the default page size if no value is provided.
licenseIdstring
Example:addon.1zYnCiM9Bpg.1zYn
License Id to filter
effectiveFromstring date-time
Example:2021-03-04T14:25:10Z
effectiveFrom to filter
Response
Success response
Example response
{
"data": [
{
"licenseId": "lic.fdjsl.313",
"accountId": "acc.fdjsl.313",
"quantity": 10,
"effectiveFrom": "2021-03-04T14:25:10Z",
"metadata": {
"key1": "value1",
"key2": "value2"
},
"createdAt": "2021-03-04T14:25:10Z"
}
],
"nextToken": "eyJsYXN0SXRlbUlkIjogInN0cmluZyIsICJwYWdlU2l6ZSI6IDEyMywgInNvcnRPcmRlciI6ICJhc2MifQ=="
}