Upload a New Organization Release File
Upload a new file for the given release.
Unlike other API requests, files must be uploaded using the traditional multipart/form-data content-type.
Requests to this endpoint should use the region-specific domain eg. us.sentry.io or de.sentry.io.
The optional 'name' attribute should reflect the absolute path that this file will be referenced as. For example, in the case of JavaScript you might specify the full web URI.
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
<auth_token> requires one of the following scopes:- project:releases
curl https://{region}.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.js
CopiedSuccess.