List a Release's Deploys
GET /api/0/organizations/{organization_id_or_slug}/releases/{version}/deploys/
Return a list of deploys for a given release.
Path Parameters
- organization_id_or_slug(string)REQUIRED
- The ID or slug of the organization. 
- 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}/deploys/ \
 -H 'Authorization: Bearer <auth_token>'RESPONSESCHEMA
[
  {
    "environment": "prod",
    "name": null,
    "url": null,
    "dateStarted": null,
    "dateFinished": "2020-08-31T19:40:38.651670Z",
    "id": "1234567"
  }
]