{ "opencollection": "1.0.0", "info": { "name": "Sentry Alerts API", "version": "0.0.1" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Alerts", "type": "folder" }, "items": [ { "info": { "name": "Sentry Fetch alerts", "type": "http" }, "http": { "method": "GET", "url": "https://sentry.io/api/0/organizations/:organization_id_or_slug/alerts/", "params": [ { "name": "organization_id_or_slug", "value": "", "type": "path", "description": "The ID or slug of the organization." }, { "name": "cursor", "value": "", "type": "query", "description": "Pagination cursor." } ] }, "docs": "Returns a list of alerts for the organization." }, { "info": { "name": "Sentry Create an alert for an organization", "type": "http" }, "http": { "method": "POST", "url": "https://sentry.io/api/0/organizations/:organization_id_or_slug/alerts/", "params": [ { "name": "organization_id_or_slug", "value": "", "type": "path", "description": "The ID or slug of the organization." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new alert for the organization." }, { "info": { "name": "Sentry Mutate an organization's alerts", "type": "http" }, "http": { "method": "PUT", "url": "https://sentry.io/api/0/organizations/:organization_id_or_slug/alerts/", "params": [ { "name": "organization_id_or_slug", "value": "", "type": "path", "description": "The ID or slug of the organization." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Bulk update alerts for an organization." }, { "info": { "name": "Sentry Bulk delete alerts", "type": "http" }, "http": { "method": "DELETE", "url": "https://sentry.io/api/0/organizations/:organization_id_or_slug/alerts/", "params": [ { "name": "organization_id_or_slug", "value": "", "type": "path", "description": "The ID or slug of the organization." }, { "name": "id", "value": "", "type": "query", "description": "IDs of alerts to delete." } ] }, "docs": "Bulk delete alerts for an organization." }, { "info": { "name": "Sentry Fetch an alert", "type": "http" }, "http": { "method": "GET", "url": "https://sentry.io/api/0/organizations/:organization_id_or_slug/alerts/:alert_id/", "params": [ { "name": "organization_id_or_slug", "value": "", "type": "path", "description": "The ID or slug of the organization." }, { "name": "alert_id", "value": "", "type": "path", "description": "The ID of the alert." } ] }, "docs": "Returns details for a specific alert." }, { "info": { "name": "Sentry Update an alert by ID", "type": "http" }, "http": { "method": "PUT", "url": "https://sentry.io/api/0/organizations/:organization_id_or_slug/alerts/:alert_id/", "params": [ { "name": "organization_id_or_slug", "value": "", "type": "path", "description": "The ID or slug of the organization." }, { "name": "alert_id", "value": "", "type": "path", "description": "The ID of the alert." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an alert." }, { "info": { "name": "Sentry Delete an alert", "type": "http" }, "http": { "method": "DELETE", "url": "https://sentry.io/api/0/organizations/:organization_id_or_slug/alerts/:alert_id/", "params": [ { "name": "organization_id_or_slug", "value": "", "type": "path", "description": "The ID or slug of the organization." }, { "name": "alert_id", "value": "", "type": "path", "description": "The ID of the alert." } ] }, "docs": "Deletes an alert." } ] } ], "bundled": true }