List all release download events

Returns a list of release download events. The release download events are returned sorted by creation date in ascending order.

GET/v3/release-download-events
JWT
releaseDownloadEvent: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"
releaseIdobjectqueryUnique identifier for the release.
productIdobjectqueryUnique identifier for the product.
userIdobjectqueryUnique identifier for the user who initiated the authorization.
licenseIdobjectqueryUnique identifier for the license used to authorize the download.
statusCodeobjectqueryHTTP status code returned for the download authorization attempt.
errorCodeobjectqueryFailure error code (for failed attempts).
releaseFileNameobjectqueryRelease file name that was requested.
releaseVersionobjectqueryRelease version associated with the event.
countryCodeobjectqueryCountry code from IP geolocation.
releaseChannelobjectqueryRelease channel name associated with the event.
searchstringquerySearch string.
idobjectqueryID of the resource.
createdAtobjectqueryDate of creation
updatedAtobjectqueryDate of last update

Responses

200 OK
[
  {
    "id": "string",
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z",
    "releaseId": "string",
    "releaseVersion": "string",
    "releaseFileId": "string",
    "releaseFileName": "string",
    "productId": "string",
    "statusCode": 0,
    "userId": "string",
    "licenseId": "string",
    "location": {
      "ipAddress": "string",
      "countryCode": "string",
      "countryName": "string",
      "regionCode": "string",
      "regionName": "string",
      "city": "string",
      "zipCode": "string",
      "timeZone": "string",
      "latitude": 0.1,
      "longitude": 0.1
    },
    "errorCode": "string",
    "errorMessage": "string",
    "releaseChannel": "string"
  }
]