Trigger workflows on an interval or cron schedule.
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.
The PhoneBurner API provides programmatic access to call center functionality, allowing you to manage contacts, handle dial sessions, and interact with call logs. With Pipedream, you can automate workflows that respond to events in PhoneBurner or orchestrate PhoneBurner actions based on triggers from other apps. This melds the power of cloud telephony with broad integration possibilities, unlocking productivity gains and streamlined operations.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
phoneburner: {
type: "app",
app: "phoneburner",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.phoneburner.com/rest/1/members/`,
headers: {
Authorization: `Bearer ${this.phoneburner.$auth.oauth_access_token}`,
},
})
},
})