Trigger workflows on an interval or cron schedule.
Allows to send an SMS or MMS to a particular phone number. See the documentation
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 FracTEL API enables integration of advanced telecommunications features into applications, allowing for the management of voice and messaging functionalities. This API can be particularly powerful when used on Pipedream, where it can be combined with hundreds of other apps to create robust, automated workflows. These can range from triggering calls based on specific events to automating SMS notifications for critical alerts.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
fractel: {
type: "app",
app: "fractel",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.fonestorm.com/v2/users/${this.fractel.$auth.email}`,
headers: {
"token": `${this.fractel.$auth.oauth_access_token}`,
},
})
},
})