with SerwerSMS.pl and goQR.me?
The SerwerSMS.pl API enables integration of robust SMS messaging capabilities into your applications or workflows. With this API, you can send text messages, manage contacts, receive delivery reports, and automate responses based on incoming messages. On Pipedream, you can harness the SerwerSMS.pl API to create event-driven workflows, automating SMS-based interactions with efficiency and ease. By connecting to various apps available on Pipedream, you can design powerful, multi-step automations that react to triggers and perform actions like sending alerts, notifications, or automated marketing campaigns.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
serwersms_pl: {
type: "app",
app: "serwersms_pl",
}
},
async run({steps, $}) {
const data = {
"username": `${this.serwersms_pl.$auth.username}`,
"password": `${this.serwersms_pl.$auth.password}`,
}
return await axios($, {
method: "post",
url: `https://api2.serwersms.pl/account/limits`,
headers: {
"Content-Type": `application/json`,
},
data,
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
goqr_me: {
type: "app",
app: "goqr_me",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.qrserver.com/v1/create-qr-code/`,
params: {
data: `${this.goqr_me.$auth.data}`,
size: `100x100`,
},
})
},
})