{ "opencollection": "1.0.0", "info": { "name": "Sentry Alerts Teams API", "version": "0.0.1" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Teams", "type": "folder" }, "items": [ { "info": { "name": "Sentry List an organization's teams", "type": "http" }, "http": { "method": "GET", "url": "https://sentry.io/api/0/organizations/:organization_id_or_slug/teams/", "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 teams bound to an organization." }, { "info": { "name": "Sentry Create a new team", "type": "http" }, "http": { "method": "POST", "url": "https://sentry.io/api/0/organizations/:organization_id_or_slug/teams/", "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 team bound to an organization." }, { "info": { "name": "Sentry Retrieve a team", "type": "http" }, "http": { "method": "GET", "url": "https://sentry.io/api/0/teams/:organization_id_or_slug/:team_id_or_slug/", "params": [ { "name": "organization_id_or_slug", "value": "", "type": "path", "description": "The ID or slug of the organization." }, { "name": "team_id_or_slug", "value": "", "type": "path", "description": "The ID or slug of the team." } ] }, "docs": "Returns details for a specific team." }, { "info": { "name": "Sentry Update a team", "type": "http" }, "http": { "method": "PUT", "url": "https://sentry.io/api/0/teams/:organization_id_or_slug/:team_id_or_slug/", "params": [ { "name": "organization_id_or_slug", "value": "", "type": "path", "description": "The ID or slug of the organization." }, { "name": "team_id_or_slug", "value": "", "type": "path", "description": "The ID or slug of the team." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates various attributes of the given team." }, { "info": { "name": "Sentry Delete a team", "type": "http" }, "http": { "method": "DELETE", "url": "https://sentry.io/api/0/teams/:organization_id_or_slug/:team_id_or_slug/", "params": [ { "name": "organization_id_or_slug", "value": "", "type": "path", "description": "The ID or slug of the organization." }, { "name": "team_id_or_slug", "value": "", "type": "path", "description": "The ID or slug of the team." } ] }, "docs": "Schedules a team for deletion." }, { "info": { "name": "Sentry List a team's projects", "type": "http" }, "http": { "method": "GET", "url": "https://sentry.io/api/0/teams/:organization_id_or_slug/:team_id_or_slug/projects/", "params": [ { "name": "organization_id_or_slug", "value": "", "type": "path", "description": "The ID or slug of the organization." }, { "name": "team_id_or_slug", "value": "", "type": "path", "description": "The ID or slug of the team." }, { "name": "cursor", "value": "", "type": "query", "description": "Pagination cursor." } ] }, "docs": "Returns a list of projects bound to a team." }, { "info": { "name": "Sentry List a project's teams", "type": "http" }, "http": { "method": "GET", "url": "https://sentry.io/api/0/projects/:organization_id_or_slug/:project_id_or_slug/teams/", "params": [ { "name": "organization_id_or_slug", "value": "", "type": "path", "description": "The ID or slug of the organization." }, { "name": "project_id_or_slug", "value": "", "type": "path", "description": "The ID or slug of the project." } ] }, "docs": "Returns a list of teams bound to a project." } ] } ], "bundled": true }