List a Project Release's Commits
GET /api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/releases/{version}/commits/
List a project release's commits.
Path Parameters
- organization_id_or_slug(string)REQUIRED
- The ID or slug of the organization the release belongs to. 
- project_id_or_slug(string)REQUIRED
- The ID or slug of the project 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/projects/{organization_id_or_slug}/{project_id_or_slug}/releases/{version}/commits/ \
 -H 'Authorization: Bearer <auth_token>'RESPONSESCHEMA
[
  {
    "dateCreated": "2018-11-06T21:19:58.536Z",
    "id": "acbafc639127fd89d10f474520104517ff1d709e",
    "message": "Initial commit from Create Next App"
  }
]