← PagerDuty

Acknowledge Incident with PagerDuty API

Pipedream makes it easy to connect APIs for PagerDuty and 1000+ other apps remarkably fast.

Trigger workflow on
HTTP requests, schedules and app events
Next, do this
Acknowledge Incident with the PagerDuty 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 Acknowledge Incident with the PagerDuty API. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Configure the Acknowledge Incident action
    1. Connect your PagerDuty account
    2. Select a Incident ID
  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

Acknowledge Incident with PagerDuty API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + PagerDuty
 
Try it
Acknowledge Incident with PagerDuty API on New Item in Feed from RSS API
RSS + PagerDuty
 
Try it
Acknowledge Incident with PagerDuty API on New Message from Discord API
Discord + PagerDuty
 
Try it
Acknowledge Incident with PagerDuty API on New Message In Channels from Slack API
Slack + PagerDuty
 
Try it
Acknowledge Incident with PagerDuty API on New Message in Channel from Discord Bot API
Discord Bot + PagerDuty
 
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.

Acknowledge Incident on PagerDuty
Description:Acknowledge an incident. [See the docs here](https://developer.pagerduty.com/api-reference/b3A6Mjc0ODE0Mg-update-an-incident)
Version:0.0.2
Key:pagerduty-acknowledge-incident

Code

import constants from "../../common/constants.mjs";
import pagerduty from "../../pagerduty.app.mjs";

export default {
  key: "pagerduty-acknowledge-incident",
  name: "Acknowledge Incident",
  description: "Acknowledge an incident. [See the docs here](https://developer.pagerduty.com/api-reference/b3A6Mjc0ODE0Mg-update-an-incident)",
  type: "action",
  version: "0.0.2",
  props: {
    pagerduty,
    incidentId: {
      propDefinition: [
        pagerduty,
        "incidentId",
        () => ({
          statuses: [
            constants.INCIDENT_STATUS.TRIGGERED,
          ],
        }),
      ],
    },
  },
  async run({ $ }) {
    const { incidentId } = this;

    const { incident } = await this.pagerduty.updateIncident({
      $,
      incidentId,
      data: {
        incident: {
          type: constants.REFERENCE.INCIDENT,
          status: constants.INCIDENT_STATUS.ACKNOWLEDGED,
        },
      },
    });

    $.export("$summary", `Incident ${incident.summary} has been ${incident.status}`);

    return incident;
  },
};

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
PagerDutypagerdutyappThis component uses the PagerDuty app.
Incident IDincidentIdstringSelect a value from the drop down menu.

Authentication

PagerDuty uses OAuth authentication. When you connect your PagerDuty account, Pipedream will open a popup window where you can sign into PagerDuty and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any PagerDuty API.

Pipedream requests the following authorization scopes when you connect your account:

About PagerDuty

Real-Time Operations and Incident Response

More Ways to Use PagerDuty

Triggers

New On-Call Rotation from the PagerDuty API

Emit new event each time a new user rotates onto an on-call rotation

 
Try it
New or Updated Incident from the PagerDuty API

Emit new event each time an incident is created or updated

 
Try it

Actions

Find Oncall User with the PagerDuty API

Find the user on call for a specific schedule. See the docs here

 
Try it
Resolve Incident with the PagerDuty API

Resolve an incident. See the docs here

 
Try it
Trigger Incident with the PagerDuty API

Trigger an incident. See the docs here

 
Try it