Upload a New Organization Release File
POST /api/0/organizations/{organization_id_or_slug}/releases/{version}/files/
Upload a new organization release file.
Path Parameters
- organization_id_or_slug(string)REQUIRED
- The id or slug of the organization. 
- version(string)REQUIRED
- The version identifier of the release. 
Body Parameters
- file(string)REQUIRED
- The multipart encoded file. 
- name(string)
- The name (full path) of the file. 
- dist(string)
- The name of the dist. 
- header(string)
- This parameter can be supplied multiple times to attach headers to the file. Each header is a string in the format - key:value. For instance it can be used to define a content type.
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>' \
 -H 'Content-Type: multipart/form-data' \
 -F name=/demo/release.min.js \
 -F file=release.min.jsRESPONSE
Success.