Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a new version of an npm package is published. See the documentation
Add a keyword to a contact. See the documentation
Sends a broadcast message to a list of contacts. See the documentation
The Project Broadcast API facilitates communication through automated text messaging, providing features to manage contacts, send messages, and track campaigns. Leveraging this API on Pipedream allows you to create intricate workflows that can automate your texting campaigns, sync contact lists, and engage with customers by integrating with numerous other services for CRM, marketing, and other functions. With Pipedream's serverless platform, these integrations become seamless, triggering actions in real-time or on a schedule without the need for complex infrastructure.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
project_broadcast: {
type: "app",
app: "project_broadcast",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.projectbroadcast.com/api/campaigns`,
headers: {
"x-api-key": `${this.project_broadcast.$auth.api_key}`,
},
})
},
})