Sentry · Arazzo Workflow

Sentry Sync Prevent Repositories

Version 1.0.0

Trigger a Prevent repository sync from GitHub, poll until it finishes, then list the synced repositories.

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

Provider

sentry-system

Workflows

sync-prevent-repos
Trigger a Prevent repo sync, poll to completion, and list repositories.
Initiates a Prevent repository sync from GitHub, polls the sync status until it reports completed, and lists the resulting repositories.
3 steps inputs: organizationIdOrSlug outputs: firstRepoId, lastSync, status
1
triggerSync
Trigger a sync of repositories from the integrated organization's GitHub.
2
pollSyncStatus
Poll the repository sync status. The step succeeds once the status is no longer running; it loops while a sync is still in progress.
3
listRepos
List the synced Prevent repositories so the operator can confirm what was pulled in from GitHub.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Sentry Sync Prevent Repositories
  summary: Trigger a Prevent repository sync from GitHub, poll until it finishes, then list the synced repositories.
  description: >-
    The integration-refresh flow for Sentry Prevent. The workflow triggers a
    sync of repositories from the integrated organization's GitHub, polls the
    sync status until it is no longer running, and then lists the synced
    repositories so the operator can confirm what was pulled in. 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
  x-realizes-capability-ids:
  - BC-4200.40
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-4200.40
      capability_name: Software Construction Management
      spec: sentry-system-repositories-api-openapi.yml
      confidence: 0.7
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: repositoriesApi
  url: ../openapi/sentry-system-repositories-api-openapi.yml
  type: openapi
workflows:
- workflowId: sync-prevent-repos
  summary: Trigger a Prevent repo sync, poll to completion, and list repositories.
  description: >-
    Initiates a Prevent repository sync from GitHub, polls the sync status until
    it reports completed, and lists the resulting repositories.
  inputs:
    type: object
    required:
    - organizationIdOrSlug
    properties:
      organizationIdOrSlug:
        type: string
        description: The ID or slug of the organization with the GitHub integration.
  steps:
  - stepId: triggerSync
    description: >-
      Trigger a sync of repositories from the integrated organization's GitHub.
    operationId: syncRepositories
    parameters:
    - name: organization_id_or_slug
      in: path
      value: $inputs.organizationIdOrSlug
    successCriteria:
    - condition: $statusCode == 202
    outputs:
      syncAccepted: $statusCode
  - stepId: pollSyncStatus
    description: >-
      Poll the repository sync status. The step succeeds once the status is no
      longer running; it loops while a sync is still in progress.
    operationId: getSyncStatus
    parameters:
    - name: organization_id_or_slug
      in: path
      value: $inputs.organizationIdOrSlug
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      status: $response.body#/status
      lastSync: $response.body#/lastSync
    onSuccess:
    - name: stillSyncing
      type: goto
      stepId: pollSyncStatus
      criteria:
      - context: $response.body
        condition: $.status == "syncing"
        type: jsonpath
    - name: syncDone
      type: goto
      stepId: listRepos
      criteria:
      - context: $response.body
        condition: $.status == "completed"
        type: jsonpath
  - stepId: listRepos
    description: >-
      List the synced Prevent repositories so the operator can confirm what was
      pulled in from GitHub.
    operationId: listRepositories
    parameters:
    - name: organization_id_or_slug
      in: path
      value: $inputs.organizationIdOrSlug
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstRepoId: $response.body#/0/id
  outputs:
    status: $steps.pollSyncStatus.outputs.status
    lastSync: $steps.pollSyncStatus.outputs.lastSync
    firstRepoId: $steps.listRepos.outputs.firstRepoId

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-sync-prevent-repos-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.