Sentry · Arazzo Workflow

Sentry Provision a Project and Client Key

Version 1.0.0

Create a new project under a team, confirm it, and mint a client key (DSN) for the SDK.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub APMApplication MonitoringBug TrackingDeveloper ToolsError TrackingObservabilityPerformance MonitoringReal-Time MonitoringArazzoWorkflows

Provider

sentry-system

Workflows

provision-project-key
Create a project under a team and provision a client key for it.
Creates a new project for a team, confirms it via retrieval, creates a named client key (DSN), and lists the project keys to verify the key exists.
4 steps inputs: keyName, organizationIdOrSlug, platform, projectName, teamIdOrSlug outputs: dsnPublic, keyId, projectSlug
1
createProject
Create a new project bound to the supplied team using the project name and optional platform.
2
confirmProject
Retrieve the newly created project to confirm it exists and capture its canonical slug for subsequent calls.
3
createKey
Create a named client key (DSN) for the project that the application SDK will use to send events to Sentry.
4
listKeys
List the project's client keys to verify the newly created key is present.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Sentry Provision a Project and Client Key
  summary: Create a new project under a team, confirm it, and mint a client key (DSN) for the SDK.
  description: >-
    The standard bootstrap flow for onboarding a new application into Sentry.
    The workflow creates a project bound to a team, retrieves the project to
    confirm its slug, mints a client key (DSN) that the application SDK will use
    to send events, and lists the project's keys to verify the new key is
    present. Every step spells out its request inline so the flow can be read
    and executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: clientKeysApi
  url: ../openapi/sentry-system-client-keys-api-openapi.yml
  type: openapi
- name: projectsApi
  url: ../openapi/sentry-system-projects-api-openapi.yml
  type: openapi
workflows:
- workflowId: provision-project-key
  summary: Create a project under a team and provision a client key for it.
  description: >-
    Creates a new project for a team, confirms it via retrieval, creates a named
    client key (DSN), and lists the project keys to verify the key exists.
  inputs:
    type: object
    required:
    - organizationIdOrSlug
    - teamIdOrSlug
    - projectName
    - keyName
    properties:
      organizationIdOrSlug:
        type: string
        description: The ID or slug of the organization.
      teamIdOrSlug:
        type: string
        description: The ID or slug of the team the project will belong to.
      projectName:
        type: string
        description: The human-readable name of the new project.
      platform:
        type: string
        description: The platform identifier for the project (e.g. python, javascript).
      keyName:
        type: string
        description: The name for the client key (DSN) to create.
  steps:
  - stepId: createProject
    description: >-
      Create a new project bound to the supplied team using the project name and
      optional platform.
    operationId: createProject
    parameters:
    - name: organization_id_or_slug
      in: path
      value: $inputs.organizationIdOrSlug
    - name: team_id_or_slug
      in: path
      value: $inputs.teamIdOrSlug
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.projectName
        platform: $inputs.platform
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      projectSlug: $response.body#/slug
      projectId: $response.body#/id
  - stepId: confirmProject
    description: >-
      Retrieve the newly created project to confirm it exists and capture its
      canonical slug for subsequent calls.
    operationId: retrieveProject
    parameters:
    - name: organization_id_or_slug
      in: path
      value: $inputs.organizationIdOrSlug
    - name: project_id_or_slug
      in: path
      value: $steps.createProject.outputs.projectSlug
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      projectSlug: $response.body#/slug
  - stepId: createKey
    description: >-
      Create a named client key (DSN) for the project that the application SDK
      will use to send events to Sentry.
    operationId: createProjectClientKey
    parameters:
    - name: organization_id_or_slug
      in: path
      value: $inputs.organizationIdOrSlug
    - name: project_id_or_slug
      in: path
      value: $steps.confirmProject.outputs.projectSlug
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.keyName
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      keyId: $response.body#/id
      dsnPublic: $response.body#/dsn/public
  - stepId: listKeys
    description: >-
      List the project's client keys to verify the newly created key is present.
    operationId: listProjectClientKeys
    parameters:
    - name: organization_id_or_slug
      in: path
      value: $inputs.organizationIdOrSlug
    - name: project_id_or_slug
      in: path
      value: $steps.confirmProject.outputs.projectSlug
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstKeyId: $response.body#/0/id
  outputs:
    projectSlug: $steps.confirmProject.outputs.projectSlug
    keyId: $steps.createKey.outputs.keyId
    dsnPublic: $steps.createKey.outputs.dsnPublic

Work with this as data

Every workflow 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 arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • 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 workflow
curl "https://apis.io/api/v1/arazzo/sentry-system-provision-project-key-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?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.