with SMSAPI and Notiff (OAuth)?
Send a new notification to a user or system via notiff.io. See the documentation
Sends a group text message using SMSAPI. See the documentation
The SMSAPI is a tool that lets you send text messages at scale. On Pipedream, you can leverage this API to create workflows that trigger on various events, like incoming emails, form submissions, or scheduled times, and send SMS messages as part of an automated process. This can help with alerts, marketing, or operational communications. Pipedream's capabilities for connecting to various APIs and services enable complex workflows that can be built without managing your own infrastructure.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
smsapi: {
type: "app",
app: "smsapi",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.smsapi.com/profile`,
headers: {
Authorization: `Bearer ${this.smsapi.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
notiff_io: {
type: "app",
app: "notiff_io",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `https://notiff.io/api/1.1/wf/me`,
headers: {
Authorization: `Bearer ${this.notiff_io.$auth.oauth_access_token}`,
},
})
},
})