Powerful, easy to use, mobile messaging platform for businesses to communicate with their customers or staff.
Go to siteVoodoo SMS is a powerful gateway API that enables you to send and receive SMS messages programmatically. When integrated with Pipedream, Voodoo SMS becomes a part of diverse automation workflows to engage customers, confirm transactions, and provide timely notifications. By leveraging Pipedream's platform, you can connect Voodoo SMS to a vast array of APIs, services, and apps, creating custom, event-driven workflows that streamline communication processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
voodoo_sms: {
type: "app",
app: "voodoo_sms",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.voodoosms.com/credits`,
headers: {
Authorization: `Bearer ${this.voodoo_sms.$auth.api_key}`,
},
})
},
})
Customer Support Ticket Alert System: Integrate Voodoo SMS with a support ticketing system like Zendesk. When a new high-priority ticket is created, trigger a Pipedream workflow to send an SMS notification to the support manager. This ensures immediate awareness and timely responses to critical customer issues.
E-Commerce Order Confirmation and Updates: Combine Voodoo SMS with an e-commerce platform like Shopify. Set up a Pipedream workflow to send an SMS confirmation when a customer places an order, and follow-up messages for order dispatch and delivery status. This workflow keeps customers informed and enhances their shopping experience.
Appointment Reminder Service: Link Voodoo SMS to Google Calendar via Pipedream. Whenever a new appointment is scheduled, trigger a workflow that sends a text reminder to the participant a day before the event. This service helps reduce no-shows and improves participation rates.
Voodoo SMS uses API keys for authentication. When you connect your Voodoo SMS account, Pipedream securely stores the keys so you can easily authenticate to Voodoo SMS APIs in both code and no-code steps.
The API key can be generated on the portal in Send SMS>API SMS>RESTful API. Once there, click Create New API Key button to get your API Key.