Sentry External Teams API

Manage external team mappings

Operations 3

POST /organizations/{organization_id_or_slug}/external-teams/ Sentry Create an external team #
PUT /organizations/{organization_id_or_slug}/external-teams/{external_team_id}/ Sentry Update an external team #
DELETE /organizations/{organization_id_or_slug}/external-teams/{external_team_id}/ Sentry Delete an external team #

Documentation

Specifications

Schemas & Data

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/sentry-system-external-teams-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

sentry-system-external-teams-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Sentry Alerts External Teams API
  description: The Alerts API provides endpoints for managing alert rules in Sentry, including creating, retrieving, updating, and deleting metric alert rules and issue alert rules, as well as managing spike protection notification actions.
  version: 0.0.1
  contact:
    name: Sentry Support
    url: https://sentry.io/support/
    email: support@sentry.io
servers:
- url: https://sentry.io/api/0
  description: Sentry Production API
security:
- BearerAuth: []
tags:
- name: External Teams
  description: Manage external team mappings
paths:
  /organizations/{organization_id_or_slug}/external-teams/:
    post:
      operationId: createExternalTeam
      summary: Sentry Create an external team
      description: Creates a mapping between a Sentry team and an external service team.
      tags:
      - External Teams
      parameters:
      - $ref: '#/components/parameters/OrganizationIdOrSlug'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - externalName
              - provider
              - teamId
              properties:
                externalName:
                  type: string
                  description: The external service team name.
                provider:
                  type: string
                  description: The integration provider.
                teamId:
                  type: integer
                  description: The Sentry team ID.
                integrationId:
                  type: integer
                  description: The integration ID.
      responses:
        '201':
          description: External team created.
        '400':
          description: Bad request.
        '401':
          description: Unauthorized.
  /organizations/{organization_id_or_slug}/external-teams/{external_team_id}/:
    put:
      operationId: updateExternalTeam
      summary: Sentry Update an external team
      description: Updates an external team mapping.
      tags:
      - External Teams
      parameters:
      - $ref: '#/components/parameters/OrganizationIdOrSlug'
      - name: external_team_id
        in: path
        required: true
        description: The ID of the external team.
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                externalName:
                  type: string
                provider:
                  type: string
      responses:
        '200':
          description: External team updated.
        '401':
          description: Unauthorized.
        '404':
          description: Not found.
    delete:
      operationId: deleteExternalTeam
      summary: Sentry Delete an external team
      description: Deletes an external team mapping.
      tags:
      - External Teams
      parameters:
      - $ref: '#/components/parameters/OrganizationIdOrSlug'
      - name: external_team_id
        in: path
        required: true
        description: The ID of the external team.
        schema:
          type: string
      responses:
        '204':
          description: External team deleted.
        '401':
          description: Unauthorized.
        '404':
          description: Not found.
components:
  parameters:
    OrganizationIdOrSlug:
      name: organization_id_or_slug
      in: path
      required: true
      description: The ID or slug of the organization.
      schema:
        type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Authentication token for the Sentry API.