An intuitive, comprehensive online tool set that empowers progressive campaigns to be stronger & more effective
Adds a contact to a specific static list. See the documentation
Create or update a batch of contacts by its ID or email. See the documentation
Create a WhatsApp, LinkedIn, or SMS message. See the documentation
The Action Network API lets you tap into a powerful tool for organizing and mobilizing activists. With this API, you can automate the management of events, petitions, fundraising, and email campaigns, syncing data seamlessly to other platforms. It's a perfect fit for political campaigns, non-profits, and grassroots movements looking to streamline their digital efforts and boost engagement through smart automations.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
action_network: {
type: "app",
app: "action_network",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://actionnetwork.org/api/v2/people`,
params: {
"OSDI-API-Token": `${this.action_network.$auth.api_key}`,
"Content-Type": `application/json`,
},
})
},
})
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}`,
},
})
},
})