Human-centric technology for your nonprofit, cause, campaign and movement.
Adds a contact to a specific static list. See the documentation
Create a new donation with the provided data. See the documentation
Create or update a batch of contacts by its ID or email. See the documentation
Create a new membership with the provided data. See the documentation
NationBuilder is a comprehensive platform for community organizing, offering tools for website creation, donor management, and communication with the community. The NationBuilder API unlocks potent opportunities for automation and data management. On Pipedream, you can leverage this API to streamline interactions between NationBuilder and other services, automate contacts synchronization, trigger communications based on user activities, and more, all while enjoying the benefits of serverless workflows.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
nationbuilder: {
type: "app",
app: "nationbuilder",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.nationbuilder.$auth.slug}.nationbuilder.com/api/v1/people/me`,
headers: {
Authorization: `Bearer ${this.nationbuilder.$auth.oauth_access_token}`,
"accept": `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}`,
},
})
},
})