EZ Texting is the #1 text marketing software. We deliver the smartest, fastest, easiest, and most reliable ways to connect with your mobile audience.
The EZ Texting API allows you to automate SMS messaging, making it a breeze to send bulk messages, set up marketing campaigns, or deliver notifications. On Pipedream, you can harness this power to create custom workflows that trigger based on various events or schedules. Think of syncing your CRM contacts, automating alerts, or even integrating with other apps to expand your communication strategy.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ez_texting_: {
type: "app",
app: "ez_texting_",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://a.eztexting.com/v1/credits`,
headers: {
Authorization: `Bearer ${this.ez_texting_.$auth.access_token}`,
"accept": `*/*`,
},
})
},
})
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.