Retrieve a Project Release's File
Retrieve a file for a given release.
Path Parameters
organization_slug
(string)REQUIREDThe slug of the organization.
project_slug
(string)REQUIREDThe slug of the project.
version
(string)REQUIREDThe version identifier of the release.
file_id
(string)REQUIREDThe ID of the file to retrieve.
Scopes
You need to authenticate via bearer auth token.
<auth_token>
requires the following scopes:project:releases
GET /api/0/projects/{organization_slug}/{project_slug}/releases/{version}/files/{file_id}/
curl https://sentry.io/api/0/projects/{organization_slug}/{project_slug}/releases/{version}/files/{file_id}/ \ -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
{
"dateCreated": "2018-11-06T21:20:19.150Z",
"dist": null,
"headers": {
"Content-Type": "text/plain; encoding=utf-8"
},
"id": "1",
"name": "/demo/message-for-you.txt",
"sha1": "2ef7bde608ce5404e97d5f042f95f89f1c232871",
"size": 12
}