MSG91 API offers a powerful platform for integrating SMS solutions into a variety of applications, enabling automated and personalized communication. With Pipedream, MSG91's API can be woven into workflows to send notifications, verify users with OTPs, and engage customers with marketing campaigns. Pipedream's no-code connectors and serverless execution model simplify the process of setting up MSG91-powered automations that can interact with countless other services.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
msg91: {
type: "app",
app: "msg91",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.msg91.com/api/validate.php?authkey=${this.msg91.$auth.authkey}`,
})
},
})
User Verification Automation: Trigger a workflow on Pipedream when a new user signs up on your platform. Use MSG91 to send a one-time password (OTP) for user verification. Connect to a database like MySQL to store the verification status.
E-commerce Order Updates: Set up a workflow that responds to order status changes from an e-commerce platform like Shopify. Use the MSG91 API to send personalized SMS updates to customers about their order's shipping status or delivery confirmation.
Scheduled Marketing Campaigns: Integrate a CRM platform like HubSpot as a trigger for Pipedream workflows. Schedule and send bulk SMS messages through MSG91 for promotions, product launches, or event announcements to a filtered list of contacts based on their interaction history or lead status.
MSG91 uses API keys for authentication. When you connect your MSG91 account, Pipedream securely stores the keys so you can easily authenticate to MSG91 APIs in both code and no-code steps.
Where can I find my authentication key?