Easily communicate real-time status to your users
Emit new event for event received. Need to be configured in the ChatBot UI flow to emit events. See docs here
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.
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}`,
},
})
},
})
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.
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}`,
},
})
},
})