Retrieve an Organization's Releases
GET /api/0/organizations/{organization_id_or_slug}/releases/{version}/
Return a release for a given organization.
Path Parameters
- organization_id_or_slug(string)REQUIRED
- The id or slug of the organization the release belongs to. 
- version(string)REQUIRED
- The version identifier of the release. 
Scopes
You need to authenticate via bearer auth token.
<auth_token> requires one of the following scopes:- project:releases
curl https://sentry.io/api/0/organizations/{organization_id_or_slug}/releases/{version}/ \
 -H 'Authorization: Bearer <auth_token>'RESPONSESCHEMA
{
  "id": 2,
  "authors": [],
  "commitCount": 0,
  "data": {},
  "dateCreated": "2018-11-06T21:20:08.033Z",
  "dateReleased": null,
  "deployCount": 0,
  "firstEvent": null,
  "lastCommit": null,
  "lastDeploy": null,
  "lastEvent": null,
  "newGroups": 0,
  "owner": null,
  "projects": [
    {
      "name": "Pump Station",
      "slug": "pump-station"
    }
  ],
  "ref": "6ba09a7c53235ee8a8fa5ee4c1ca8ca886e7fdbb",
  "shortVersion": "2.0rc2",
  "url": null,
  "version": "2.0rc2"
}