← Sentry

List Issue Events with Sentry API

Pipedream makes it easy to connect APIs for Sentry and 1200+ other apps remarkably fast.

Trigger workflow on
HTTP requests, schedules and app events
Next, do this
List Issue Events with the Sentry API
No credit card required
Into to Pipedream
Watch us build a workflow
Watch us build a workflow
7 min
Watch now ➜

Trusted by 500,000+ developers from startups to Fortune 500 companies

Adyen logo
Brex logo
Carta logo
Checkr logo
Chameleon logo
DevRev logo
LinkedIn logo
Netflix logo
New Relic logo
OnDeck logo
Replicated logo
Scale AI logo
Teamwork logo
Warner Bros. logo
Xendit logo

Developers Pipedream

Getting Started

Create a workflow to List Issue Events with the Sentry API. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Configure the List Issue Events action
    1. Connect your Sentry account
    2. Select a Organization
    3. Select a Project
    4. Select a Issue
    5. Optional- Configure Full
    6. Optional- Configure Max Results
  2. Select a trigger to run your workflow on HTTP requests, schedules or app events
  3. Deploy the workflow
  4. Send a test event to validate your setup
  5. Turn on the trigger

Integrations

List Issue Events with Sentry API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Sentry
 
Try it
List Issue Events with Sentry API on New Submission from Typeform API
Typeform + Sentry
 
Try it
List Issue Events with Sentry API on Custom Events from Zoom API
Zoom + Sentry
 
Try it
List Issue Events with Sentry API on New Submission (Instant) from Jotform API
Jotform + Sentry
 
Try it
List Issue Events with Sentry API on New Custom Webhook Events from Stripe API
Stripe + Sentry
 
Try it

Details

This is a pre-built, source-available component from Pipedream's GitHub repo. The component is developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

List Issue Events on Sentry
Description:Return a list of events bound to an issue. [See the docs here](https://docs.sentry.io/api/events/list-an-issues-events/)
Version:0.1.0
Key:sentry-list-issue-events

Code

import sentry from "../../sentry.app.mjs";

export default {
  key: "sentry-list-issue-events",
  name: "List Issue Events",
  description: "Return a list of events bound to an issue. [See the docs here](https://docs.sentry.io/api/events/list-an-issues-events/)",
  version: "0.1.0",
  type: "action",
  props: {
    sentry,
    organizationSlug: {
      propDefinition: [
        sentry,
        "organizationSlug",
      ],
    },
    projectId: {
      propDefinition: [
        sentry,
        "projectId",
      ],
    },
    issueId: {
      propDefinition: [
        sentry,
        "issueId",
        (c) => ({
          organizationSlug: c.organizationSlug,
          projectId: c.projectId,
        }),
      ],
    },
    full: {
      propDefinition: [
        sentry,
        "full",
      ],
    },
    maxResults: {
      propDefinition: [
        sentry,
        "maxResults",
      ],
    },
  },
  async run ({ $ }) {
    const params = {
      full: this.full,
    };
    const data = await this.sentry._paginate(
      this.maxResults,
      this.sentry.listIssueEvents,
      this.issueId,
      params,
    );
    if (data.length === 0) {
      $.export("$summary", "No events found");
    } else {
      $.export("$summary", `${data.length} event(s) found`);
    }
    return data;
  },
};

Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
SentrysentryappThis component uses the Sentry app.
OrganizationorganizationSlugstringSelect a value from the drop down menu.
ProjectprojectIdstringSelect a value from the drop down menu.
IssueissueIdstringSelect a value from the drop down menu.
Fullfullboolean

If this is set to true then the event payload will include the full event body, including the stacktrace. Set to true to enable.

Max ResultsmaxResultsinteger

The maximum number of registers to return. Defaults to 1000.

Authentication

Sentry uses API keys for authentication. When you connect your Sentry account, Pipedream securely stores the keys so you can easily authenticate to Sentry APIs in both code and no-code steps.

Create authentication tokens at https://sentry.io/settings/account/api/auth-tokens/ to use the Sentry API on behalf of your user account.

About Sentry

Self-hosted and cloud-based error monitoring

More Ways to Use Sentry

Triggers

New Issue Event (Instant) from the Sentry API

Emit new events for issues that have been created or updated.

 
Try it

Actions

List Project Events. with the Sentry API

Return a list of events bound to a project. See the docs here

 
Try it
List Project Issues. with the Sentry API

Return a list of issues bound to a project. See the docs here

 
Try it
Update Issue. with the Sentry API

Updates an individual issue's attributes. Only the attributes submitted are modified.See the docs here

 
Try it

Explore Other Apps

1
-
12
of
1200+
apps by most popular

HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Beta
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
Schedule
Schedule
Trigger workflows on an interval or cron schedule.
Beta
Data Stores
Data Stores
Use Pipedream Data Stores to manage state throughout your workflows.
Telegram Bot
Telegram Bot
Telegram is a cloud-based instant messaging and voice over IP service
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular apps like ChatGPT and DALL·E 2.
Google Sheets
Google Sheets
With Google Sheets, you can create, edit, and collaborate wherever you are
Discord
Discord
Use this app to create a Discord source that emits messages from your guild to a Pipedream workflow.
GitHub
GitHub
Where the world builds software. Millions of developers and companies build, ship, and maintain their software on GitHub—the largest and most advanced development platform in the world.
Formatting
Formatting
Pre-built actions to make formatting and manipulating data within your workflows easier.
Slack
Slack
Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.