with Easypromos and Slybroadcast?
Start a new voicemail campaign using an audio file uploaded to your slybroadcast account. See the documentation
Launch a new voicemail campaign to an individual or a group using an audio file url. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
easypromos: {
type: "app",
app: "easypromos",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.easypromosapp.com/v2/promotions`,
headers: {
Authorization: `Bearer ${this.easypromos.$auth.api_key}`,
},
})
},
})
The Slybroadcast API lets you send voice messages directly to the voicemail boxes of your audience without ringing their phones. Integrating this API with Pipedream allows you to automate voice message campaigns, follow-ups, and notifications, by triggering voice messages based on events in other apps or through scheduled workflows.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
slybroadcast: {
type: "app",
app: "slybroadcast",
}
},
async run({steps, $}) {
const data = {
"c_uid": `${this.slybroadcast.$auth.email}`,
"c_password": `${this.slybroadcast.$auth.password}`,
"remain_message": `1`,
}
return await axios($, {
method: "POST",
url: `https://www.mobile-sphere.com/gateway/vmb.php`,
headers: {
"Content-Type": `application/x-www-form-urlencoded`,
"Accept": `*/*`,
},
data,
})
},
})