With Slybroadcast's patented voicemail delivery technology, send a voice mail directly to the voice-mailboxes of mobile phones.
Emit new event when a specified property is provided or updated on a company. See the documentation
Emit new event when a specified property is provided or updated on a contact. See the documentation
Emit new event when a specified property is provided or updated on a custom object.
Start a new voicemail campaign using an audio file uploaded to your slybroadcast account. See the documentation
Adds a contact to a specific static list. See the documentation
Launch a new voicemail campaign to an individual or a group using an audio file url. See the documentation
Create or update a batch of contacts by its ID or email. See the documentation
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,
})
},
})
The HubSpot API enables developers to integrate into HubSpots CRM, CMS, Conversations, and other features. It allows for automated management of contacts, companies, deals, and marketing campaigns, enabling custom workflows, data synchronization, and task automation. This streamlines operations and boosts customer engagement, with real-time updates for rapid response to market changes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hubspot: {
type: "app",
app: "hubspot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.hubapi.com/integrations/v1/me`,
headers: {
Authorization: `Bearer ${this.hubspot.$auth.oauth_access_token}`,
},
})
},
})