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.
Picky Assist bridges your communication channels with smart automation, letting you weave SMS, WhatsApp, and other messaging services into your business workflows. By integrating with Pipedream, you can automate interactions with customers, streamline notifications, or orchestrate multi-platform messaging campaigns. The API enables you to trigger messages based on events, sync conversations to CRMs, or even dispatch alerts from monitoring systems.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
picky_assist: {
type: "app",
app: "picky_assist",
}
},
async run({steps, $}) {
const data = {
"token": `${this.picky_assist.$auth.api_token}`,
}
return await axios($, {
method: "post",
url: `https://pickyassist.com/app/api/v2/check-balance`,
data,
})
},
})