Trigger workflows on an interval or cron schedule.
Trigger your workflow on one or more days each month at a specific time (with timezone support).
Emit new event for event received. Need to be configured in the ChatBot UI flow to emit events. See docs here
Trigger your workflow on one or more days each week at a specific time (with timezone support).
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.
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}`,
},
})
},
})