{ "opencollection": "1.0.0", "info": { "name": "Sentry Alerts Release Files API", "version": "0.0.1" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Release Files", "type": "folder" }, "items": [ { "info": { "name": "Sentry List an organization's release files", "type": "http" }, "http": { "method": "GET", "url": "https://sentry.io/api/0/organizations/:organization_id_or_slug/releases/:version/files/", "params": [ { "name": "organization_id_or_slug", "value": "", "type": "path", "description": "The ID or slug of the organization." }, { "name": "version", "value": "", "type": "path", "description": "The version identifier of the release." }, { "name": "cursor", "value": "", "type": "query", "description": "Pagination cursor." } ] }, "docs": "Returns a list of files associated with an organization release." }, { "info": { "name": "Sentry Upload a new organization release file", "type": "http" }, "http": { "method": "POST", "url": "https://sentry.io/api/0/organizations/:organization_id_or_slug/releases/:version/files/", "params": [ { "name": "organization_id_or_slug", "value": "", "type": "path", "description": "The ID or slug of the organization." }, { "name": "version", "value": "", "type": "path", "description": "The version identifier of the release." } ], "body": { "type": "multipart-form", "data": [ { "name": "file", "type": "text", "value": "" }, { "name": "name", "type": "text", "value": "" }, { "name": "header", "type": "text", "value": "" } ] } }, "docs": "Uploads a new file for the given release." }, { "info": { "name": "Sentry Retrieve an organization release's file", "type": "http" }, "http": { "method": "GET", "url": "https://sentry.io/api/0/organizations/:organization_id_or_slug/releases/:version/files/:file_id/", "params": [ { "name": "organization_id_or_slug", "value": "", "type": "path", "description": "The ID or slug of the organization." }, { "name": "version", "value": "", "type": "path", "description": "The version identifier of the release." }, { "name": "file_id", "value": "", "type": "path", "description": "The ID of the file." } ] }, "docs": "Returns a file associated with an organization release." }, { "info": { "name": "Sentry Update an organization release file", "type": "http" }, "http": { "method": "PUT", "url": "https://sentry.io/api/0/organizations/:organization_id_or_slug/releases/:version/files/:file_id/", "params": [ { "name": "organization_id_or_slug", "value": "", "type": "path", "description": "The ID or slug of the organization." }, { "name": "version", "value": "", "type": "path", "description": "The version identifier of the release." }, { "name": "file_id", "value": "", "type": "path", "description": "The ID of the file." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an organization release file." }, { "info": { "name": "Sentry Delete an organization release's file", "type": "http" }, "http": { "method": "DELETE", "url": "https://sentry.io/api/0/organizations/:organization_id_or_slug/releases/:version/files/:file_id/", "params": [ { "name": "organization_id_or_slug", "value": "", "type": "path", "description": "The ID or slug of the organization." }, { "name": "version", "value": "", "type": "path", "description": "The version identifier of the release." }, { "name": "file_id", "value": "", "type": "path", "description": "The ID of the file." } ] }, "docs": "Deletes a release file from an organization release." } ] } ], "bundled": true }