List all subscription logs

Returns a list of subscription logs. The subscription logs are returned sorted by creation date in ascending order.

GET/v3/licenses/subscription-logs
JWT
license:read

Parameters

NameTypeInDescription
pageintegerqueryThe page number.
limitintegerqueryThe number of records per page. Must be a number between 1 and 100.
sortstringqueryThe sort string to sort the returned records e.g. "-createdAt"
licenseIdobjectqueryUnique identifier for the license.
eventobjectqueryName of the event.
licenseKeyobjectqueryLicense key associated with the subscription log.
searchstringquerySearch string.
idobjectqueryID of the resource.
createdAtobjectqueryDate of creation

Responses

200 OK
[
  {
    "id": "string",
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z",
    "licenseId": "string",
    "event": "string",
    "changes": [
      {
        "propertyName": "string",
        "oldValue": null,
        "newValue": null
      }
    ]
  }
]