ChatBot

ChatBot is an all-in-one platform to create, deploy, and track chatbots across channels.

Integrate the ChatBot API with the Statuspage API

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

Create Incident with Statuspage API on New Event from ChatBot API
ChatBot + Statuspage
 
Try it
Create User with ChatBot API on Incident Updated (Instant) from Statuspage API
Statuspage + ChatBot
 
Try it
Create User with ChatBot API on New Incident Created (Instant) from Statuspage API
Statuspage + ChatBot
 
Try it
Get Users with ChatBot API on Incident Updated (Instant) from Statuspage API
Statuspage + ChatBot
 
Try it
Get Users with ChatBot API on New Incident Created (Instant) from Statuspage API
Statuspage + ChatBot
 
Try it
Incident Updated (Instant) from the Statuspage API

Emit new event on each updated incident.

 
Try it
New Event from the ChatBot API

Emit new event for event received. Need to be configured in the ChatBot UI flow to emit events. See docs here

 
Try it
New Incident Created (Instant) from the Statuspage API

Emit new event on each created incident.

 
Try it
Create User with the ChatBot API

Creates new user. See docs here

 
Try it
Create Incident with the Statuspage API

Creates an incident. See docs here

 
Try it
Get Users with the ChatBot API

Get a list of users. See docs here

 
Try it
Update Incident with the Statuspage API

Updates an existing incident. See docs here

 
Try it

Overview of ChatBot

Leverage the ChatBot API on Pipedream to automate conversations, streamline customer service, and connect chat functionality with various apps for rich, responsive interaction. With this API, you can programmatically send messages, manage chat histories, and implement chatbots that react to user input in real-time. By integrating with Pipedream, these capabilities can be augmented with thousands of apps, enabling seamless data flow and complex automations.

Connect ChatBot

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    chatbot: {
      type: "app",
      app: "chatbot",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.chatbot.com/stories`,
      headers: {
        Authorization: `Bearer ${this.chatbot.$auth.developer_access_token}`,
      },
    })
  },
})

Overview of Statuspage

The Statuspage API allows you to automate the management and orchestration of incident communication directly from Pipedream. With this API, you can create, update, and resolve incidents, manage maintenance events, and retrieve information about components and subscribers. It's an efficient way to ensure transparency and inform stakeholders during outages or scheduled maintenance by programmatically controlling your status pages.

Connect Statuspage

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    statuspage: {
      type: "app",
      app: "statuspage",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.statuspage.io/v1/pages`,
      headers: {
        "Authorization": `OAuth ${this.statuspage.$auth.api_key}`,
      },
    })
  },
})