Retrieve a release

Retrieves a published release of a product which is associated with the organization through its licenses.

GET/v3/organizations/{organizationId}/releases/{id}
JWT
organization:release:read

Parameters

NameTypeInDescription
organizationId*stringpathUnique identifier for the organization.
id*stringpathUnique identifier for the release.
includearrayqueryWhether to include related entities in the response.

Responses

200 OK
{
  "id": "string",
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z",
  "name": "string",
  "channel": "string",
  "version": "string",
  "platforms": [
    "string"
  ],
  "notes": "string",
  "totalFiles": 0,
  "publishedAt": "2019-08-24T14:15:22Z",
  "files": [
    {
      "id": "string",
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z",
      "name": "string",
      "url": "string",
      "size": 0,
      "downloads": 0,
      "extension": "string",
      "checksum": "string",
      "secured": true,
      "published": true,
      "releaseId": "string",
      "releaseName": "string"
    }
  ],
  "product": {
    "id": "string",
    "displayName": "string",
    "iconUrl": "string",
    "description": "string"
  }
}