with npm and Waboxapp?
Emit new event with the latest count of downloads for an npm package. See the documentation
Emit new event when a new version of an npm package is published. See the documentation
Send an image in WhatsApp to a specific phone number. See the documentation
Send a link with preview in WhatsApp to a specific phone number. See the documentation
Send any kind of file in WhatsApp to a specific phone number. See the documentation
Send a WhatsApp message to a specific phone number. See the documentation
The Waboxapp API is a powerful tool allowing enhanced interaction with WhatsApp, enabling automated messages, and message monitoring. With this API on Pipedream, you can create sophisticated workflows that send alerts, synchronize with customer service platforms, or even trigger events in other apps based on received WhatsApp messages. By leveraging serverless execution, these automations can run on-demand or on a schedule without the need for dedicated infrastructure.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
waboxapp: {
type: "app",
app: "waboxapp",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `https://www.waboxapp.com/api/status/${this.waboxapp.$auth.account_phone_number}`,
params: {
token: `${this.waboxapp.$auth.api_token}`,
},
})
},
})