List an Organization's Release Files
GET /api/0/organizations/{organization_id_or_slug}/releases/{version}/files/
Return a list of files 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}/files/ \
 -H 'Authorization: Bearer <auth_token>'RESPONSESCHEMA
[
  {
    "dateCreated": "2018-11-06T21:20:22.894Z",
    "dist": null,
    "headers": {
      "Content-Type": "text/plain; encoding=utf-8"
    },
    "id": "3",
    "name": "/demo/goodbye.txt",
    "sha1": "94d6b21e962a9fc65889617ec1f17a1e2fe11b65",
    "size": 15
  }
]