Sentry · Arazzo Workflow

Sentry Capture User Feedback for an Event

Version 1.0.0

Find a recent project event, attach user feedback to it, and confirm the feedback was recorded.

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

Provider

sentry-system

Workflows

capture-user-feedback
Attach user feedback to a recent project event and verify it.
Lists a project's recent events, submits user feedback against the most recent event, and lists the project's user feedback to confirm the new entry.
3 steps inputs: comments, email, name, organizationIdOrSlug, projectIdOrSlug outputs: eventId, feedbackEventId
1
listEvents
List the project's recent error events and capture the id of the most recent event to attach feedback to.
2
submitFeedback
Submit user feedback for the project referencing the most recent event id.
3
listFeedback
List the project's user feedback to confirm the new feedback entry was recorded.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Sentry Capture User Feedback for an Event
  summary: Find a recent project event, attach user feedback to it, and confirm the feedback was recorded.
  description: >-
    The flow that ties a crash to a real user report. The workflow lists a
    project's recent error events, picks the most recent one, submits user
    feedback referencing that event id, and lists the project's user feedback to
    confirm the submission was recorded. 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-4220.20
  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-4220.20
      capability_name: Observability Management
      spec: sentry-system-events-api-openapi.yml
      confidence: 0.85
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: eventsApi
  url: ../openapi/sentry-system-events-api-openapi.yml
  type: openapi
- name: userFeedbackApi
  url: ../openapi/sentry-system-user-feedback-api-openapi.yml
  type: openapi
workflows:
- workflowId: capture-user-feedback
  summary: Attach user feedback to a recent project event and verify it.
  description: >-
    Lists a project's recent events, submits user feedback against the most
    recent event, and lists the project's user feedback to confirm the new entry.
  inputs:
    type: object
    required:
    - organizationIdOrSlug
    - projectIdOrSlug
    - name
    - email
    - comments
    properties:
      organizationIdOrSlug:
        type: string
        description: The ID or slug of the organization.
      projectIdOrSlug:
        type: string
        description: The ID or slug of the project.
      name:
        type: string
        description: The name of the user submitting feedback.
      email:
        type: string
        description: The email address of the user submitting feedback.
      comments:
        type: string
        description: The feedback comments from the user.
  steps:
  - stepId: listEvents
    description: >-
      List the project's recent error events and capture the id of the most
      recent event to attach feedback to.
    operationId: listProjectEvents
    parameters:
    - name: organization_id_or_slug
      in: path
      value: $inputs.organizationIdOrSlug
    - name: project_id_or_slug
      in: path
      value: $inputs.projectIdOrSlug
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      eventId: $response.body#/0/eventID
    onSuccess:
    - name: eventFound
      type: goto
      stepId: submitFeedback
      criteria:
      - context: $response.body
        condition: $.length > 0
        type: jsonpath
  - stepId: submitFeedback
    description: >-
      Submit user feedback for the project referencing the most recent event id.
    operationId: submitProjectUserFeedback
    parameters:
    - name: organization_id_or_slug
      in: path
      value: $inputs.organizationIdOrSlug
    - name: project_id_or_slug
      in: path
      value: $inputs.projectIdOrSlug
    requestBody:
      contentType: application/json
      payload:
        event_id: $steps.listEvents.outputs.eventId
        name: $inputs.name
        email: $inputs.email
        comments: $inputs.comments
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      feedbackEventId: $response.body#/eventID
  - stepId: listFeedback
    description: >-
      List the project's user feedback to confirm the new feedback entry was
      recorded.
    operationId: listProjectUserFeedback
    parameters:
    - name: organization_id_or_slug
      in: path
      value: $inputs.organizationIdOrSlug
    - name: project_id_or_slug
      in: path
      value: $inputs.projectIdOrSlug
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstFeedbackEventId: $response.body#/0/eventID
  outputs:
    eventId: $steps.listEvents.outputs.eventId
    feedbackEventId: $steps.submitFeedback.outputs.feedbackEventId

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-capture-user-feedback-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.