PagerDuty

Real-Time Operations and Incident Response

Integrate the PagerDuty API with the Filter API

Setup the PagerDuty API trigger to run a workflow which integrates with the Filter API. Pipedream's integration platform allows you to integrate PagerDuty and Filter remarkably fast. Free for developers.

Continue execution if a condition Is met with Filter API on New On-Call Rotation from PagerDuty API
PagerDuty + Filter
 
Try it
Continue execution if a condition Is met with Filter API on New or Updated Incident from PagerDuty API
PagerDuty + Filter
 
Try it
End execution if a condition is met with Filter API on New On-Call Rotation from PagerDuty API
PagerDuty + Filter
 
Try it
End execution if a condition is met with Filter API on New or Updated Incident from PagerDuty API
PagerDuty + Filter
 
Try it
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
Acknowledge Incident with the PagerDuty API

Acknowledge an incident. See the docs here

 
Try it
Continue execution if a condition Is met with the Filter API

Continue workflow execution only if a condition is met

 
Try it
Find Oncall User with the PagerDuty API

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

 
Try it
End execution if a condition is met with the Filter API

End workflow execution if a condition is met

 
Try it
Resolve Incident with the PagerDuty API

Resolve an incident. See the docs here

 
Try it

Overview of PagerDuty

PagerDuty's APIs allow you to integrate the powerful incident response
capabilities of PagerDuty with your own custom applications. With PagerDuty's
APIs, you can build applications to optimize your incident response process,
collaborate with teams more effectively, and analyze data from your incident
response process. Here are some examples of what you can do with PagerDuty's
APIs:

  • Create and manage automated incident response workflows
  • Automatically trigger actions based on incident response events
  • Enable communication between PagerDuty and other third party applications
  • Pull data from your previous incident response processes to identify best
    practices
  • Create custom reporting tools and insights into incident response processes
  • Monitor multiple teams and services at once

Connect PagerDuty

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    pagerduty: {
      type: "app",
      app: "pagerduty",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.pagerduty.com/users/me`,
      headers: {
        Authorization: `Bearer ${this.pagerduty.$auth.oauth_access_token}`,
        "Accept": `application/vnd.pagerduty+json;version=2`,
      },
    })
  },
})

Overview of Filter

The Filter API is a great way to build powerful workflows that can manipulate
and transform data. Here are some examples of what you can build using the
Filter API:

  • A workflow that transforms data from one format to another
  • A workflow that filters out data that does not meet certain criteria
  • A workflow that sorts data in a specific order
  • A workflow that calculates statistics or aggregates data
  • A workflow that combines data from multiple sources

Connect Filter

1
2
3
4
5
6
7
8
9
10
export default defineComponent({
  async run({ steps, $ }) {
    let condition = false
    if (condition == false) {
      $.flow.exit("Ending workflow early because the condition is false")
    } else {
        $.export("$summary", "Continuing workflow, since condition for ending was not met.")
    }
  },
})
Run a Pipedream workflow on PagerDuty on-call rotations
Run a Pipedream workflow on PagerDuty on-call rotations
Run common workflows, or any Node.js code you'd like, each time a new user rotates onto an on-call schedule.