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 BulkGate API enables automated sending of SMS messages, offering a powerful way to communicate with customers or users directly through their mobile devices. With this API on Pipedream, you can craft workflows that trigger SMS notifications based on specific events, such as new sign-ups, transaction alerts, or appointment reminders. It's a tool for enhancing customer engagement, support, and conversion through timely and personalized messaging.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bulkgate: {
type: "app",
app: "bulkgate",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://portal.bulkgate.com/api/1.0/simple/info`,
params: {
application_id: `${this.bulkgate.$auth.app_id}`,
application_token: `${this.bulkgate.$auth.app_token}`,
},
})
},
})