← Sentry

List Project Issues. with Sentry API

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

Trigger workflow on
HTTP requests, schedules and app events
Next, do this
List Project Issues. 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 Project Issues. 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 Project Issues. action
    1. Connect your Sentry account
    2. Select a Organization
    3. Select a Project
    4. Optional- Configure Stats Period
    5. Optional- Configure Short ID Lookup
    6. Optional- Configure Query
    7. 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 Project Issues. with Sentry API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Sentry
 
Try it
List Project Issues. with Sentry API on New Message from Discord API
Discord + Sentry
 
Try it
List Project Issues. with Sentry API on New Message In Channels from Slack API
Slack + Sentry
 
Try it
List Project Issues. with Sentry API on New Message in Channel from Discord Bot API
Discord Bot + Sentry
 
Try it
List Project Issues. with Sentry API on New Submission from Typeform API
Typeform + 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 Project Issues. on Sentry
Description:Return a list of issues bound to a project. [See the docs here](https://docs.sentry.io/api/issues/list-a-projects-issues/)
Version:0.1.0
Key:sentry-list-project-issues

Code

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

export default {
  key: "sentry-list-project-issues",
  version: "0.1.0",
  type: "action",
  name: "List Project Issues.",
  description: "Return a list of issues bound to a project. [See the docs here](https://docs.sentry.io/api/issues/list-a-projects-issues/)",
  props: {
    app,
    organizationSlug: {
      propDefinition: [
        app,
        "organizationSlug",
      ],
    },
    projectId: {
      propDefinition: [
        app,
        "projectId",
      ],
    },
    statsPeriod: {
      type: "string",
      label: "Stats Period",
      description: "An optional stat period (e.g. `\"24h\"`, `\"14d\"`).",
      optional: true,
    },
    shortIdLookup: {
      type: "boolean",
      label: "Short ID Lookup",
      description: "If this is set to true then short IDs are looked up by this function as well. This can cause the return value of the function to return an event issue of a different project which is why this is an opt-in.",
      optional: true,
    },
    query: {
      type: "string",
      label: "Query",
      description: "An optional Sentry structured search query. If not provided an implied `is:unresolved` is assumed.",
      optional: true,
    },
    maxResults: {
      propDefinition: [
        app,
        "maxResults",
      ],
    },
  },
  async run({ $ }) {
    const params = {
      statsPeriod: this.statsPeriod,
      shortIdLookup: this.shortIdLookup,
      query: this.query,
    };
    const data = await this.app._paginate(
      this.maxResults ?? 1000,
      this.app.listProjectIssues,
      this.organizationSlug,
      this.projectId,
      params,
    );
    if (data.length === 0) {
      $.export("$summary", "No issues found");
    } else {
      $.export("$summary", `${data.length} issue(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
SentryappappThis component uses the Sentry app.
OrganizationorganizationSlugstringSelect a value from the drop down menu.
ProjectprojectIdstringSelect a value from the drop down menu.
Stats PeriodstatsPeriodstring

An optional stat period (e.g. "24h", "14d").

Short ID LookupshortIdLookupboolean

If this is set to true then short IDs are looked up by this function as well. This can cause the return value of the function to return an event issue of a different project which is why this is an opt-in.

Queryquerystring

An optional Sentry structured search query. If not provided an implied is:unresolved is assumed.

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 Issue Events with the Sentry API

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

 
Try it
List Project Events. with the Sentry API

Return a list of events 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
1400+
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.
Schedule
Schedule
Trigger workflows on an interval or cron schedule.
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.
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.