Whautomate - Omnichannel Customer Engagement Platform!
Emit new event when an appointment is cancelled in Whautomate.
Trigger your workflow on one or more days each month at a specific time (with timezone support).
Emit new event when a new appointment is scheduled in Whautomate.
Assign one or more tags to an existing contact. See the documentation
Create a new contact associated with a WhatsApp number. See the documentation
Send a pre-defined WhatsApp message template to a contact. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
whautomate: {
type: "app",
app: "whautomate",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.whautomate.$auth.api_host}/v1/contacts`,
headers: {
"x-api-key": `${this.whautomate.$auth.api_key}`,
},
})
},
})
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.