With MSG91, you can build a variety of features into your app or website, including:
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}`,
})
},
})
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?