View as Markdown
Sentry icon

Sentry ACTION

Update Issue.

Updates an individual issue's attributes. Only the attributes submitted are modified.See the docs here
  • Action
  • Writes data
  • Destructive
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Sentry account once, then configure and run Update Issue. from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "sentry-update-issue",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    sentry: { authProvisionId: "apn_xxxxxxx" },
    organizationSlug: "Organization",
    projectId: "Project",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Update Issue. inputs
Property Type Description
organizationSlug Organization string
The organization for which to consider issues events
Required Dynamic
projectId Project string
The project to perform your action
Required Dynamic
issueId Issue string
The issue to be updated
Required Dynamic
status Status string
The new status for the issue.
Optional
assignedTo Assigned To string
The actor id (or username) of the user or team that should be assigned to this issue.
Optional Dynamic
hasSeen Has Seen boolean
In case this API call is invoked with a user context this allows changing of the flag that indicates if the user has seen the event.
Optional
isBookmarked Is Bookmarked boolean
In case this API call is invoked with a user context this allows changing of the bookmark flag.
Optional
isPublic Is Public boolean
Sets the issue to public or private.
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
sentry-update-issue
Version
0.1.3
App
Sentry
Authentication
API key
Read-only
No
Destructive
Yes
Open world
Yes