Sentry · Arazzo Workflow

Sentry Investigate an Issue's Tags

Version 1.0.0

Find an issue, inspect a tag's distribution and values, then bookmark and assign it for follow-up.

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

Provider

sentry-system

Workflows

investigate-issue-tags
Inspect an issue's tag distribution, then bookmark and assign it.
Locates an issue by search query, retrieves the distribution for a chosen tag key, lists that tag's unique values, and finally bookmarks and assigns the issue for follow-up.
4 steps inputs: assignedTo, organizationIdOrSlug, query, tagKey outputs: assignedIssueId, issueId, uniqueValues
1
findIssue
List the organization's issues filtered by the supplied search query and capture the first matching issue id.
2
getTagDetails
Retrieve the distribution details for the chosen tag key on the matched issue, including its top values and total counts.
3
listTagValues
List the unique values of the chosen tag key on the issue to see the full breakdown.
4
assignIssue
Bookmark the issue and assign it to the supplied owner so the right person follows up on the investigation.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Sentry Investigate an Issue's Tags
  summary: Find an issue, inspect a tag's distribution and values, then bookmark and assign it for follow-up.
  description: >-
    A debugging flow that uses tag breakdowns to scope an error. The workflow
    finds an unresolved issue in an organization, retrieves the details for a
    chosen tag key (such as browser or release) to see its value distribution,
    lists the unique values of that tag, and then bookmarks and assigns the
    issue so the right owner can follow up. 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.50
  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.50
      capability_name: Software Quality Engineering
      spec: sentry-system-issues-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: issuesApi
  url: ../openapi/sentry-system-issues-api-openapi.yml
  type: openapi
workflows:
- workflowId: investigate-issue-tags
  summary: Inspect an issue's tag distribution, then bookmark and assign it.
  description: >-
    Locates an issue by search query, retrieves the distribution for a chosen
    tag key, lists that tag's unique values, and finally bookmarks and assigns
    the issue for follow-up.
  inputs:
    type: object
    required:
    - organizationIdOrSlug
    - tagKey
    properties:
      organizationIdOrSlug:
        type: string
        description: The ID or slug of the organization that owns the issues.
      query:
        type: string
        description: A Sentry structured search query used to find the issue.
      tagKey:
        type: string
        description: The tag key to inspect (e.g. browser, release, environment).
      assignedTo:
        type: string
        description: The username or team to assign the issue to for follow-up.
  steps:
  - stepId: findIssue
    description: >-
      List the organization's issues filtered by the supplied search query and
      capture the first matching issue id.
    operationId: listOrganizationIssues
    parameters:
    - name: organization_id_or_slug
      in: path
      value: $inputs.organizationIdOrSlug
    - name: query
      in: query
      value: $inputs.query
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      issueId: $response.body#/0/id
    onSuccess:
    - name: issueFound
      type: goto
      stepId: getTagDetails
      criteria:
      - context: $response.body
        condition: $.length > 0
        type: jsonpath
  - stepId: getTagDetails
    description: >-
      Retrieve the distribution details for the chosen tag key on the matched
      issue, including its top values and total counts.
    operationId: retrieveIssueTagDetails
    parameters:
    - name: issue_id
      in: path
      value: $steps.findIssue.outputs.issueId
    - name: key
      in: path
      value: $inputs.tagKey
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      uniqueValues: $response.body#/uniqueValues
      topValue: $response.body#/topValues/0/value
  - stepId: listTagValues
    description: >-
      List the unique values of the chosen tag key on the issue to see the full
      breakdown.
    operationId: listIssueTagValues
    parameters:
    - name: issue_id
      in: path
      value: $steps.findIssue.outputs.issueId
    - name: key
      in: path
      value: $inputs.tagKey
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstValue: $response.body#/0/value
  - stepId: assignIssue
    description: >-
      Bookmark the issue and assign it to the supplied owner so the right person
      follows up on the investigation.
    operationId: updateIssue
    parameters:
    - name: issue_id
      in: path
      value: $steps.findIssue.outputs.issueId
    requestBody:
      contentType: application/json
      payload:
        isBookmarked: true
        assignedTo: $inputs.assignedTo
        hasSeen: true
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      assignedIssueId: $response.body#/id
  outputs:
    issueId: $steps.findIssue.outputs.issueId
    uniqueValues: $steps.getTagDetails.outputs.uniqueValues
    assignedIssueId: $steps.assignIssue.outputs.assignedIssueId

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-investigate-issue-tags-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.