#1 rated, world's first free fundraising platform powering $150M+ in donations annually for thousands of good causes. đź’›
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
The Givebutter API taps into the platform's fundraising capabilities, allowing developers to manage campaigns, track donations, and engage with supporters. It's designed for nonprofits and community organizations looking to automate their fundraising efforts and integrate with other services for a seamless workflow. By leveraging the Givebutter API on Pipedream, one can create custom automations that sync data between tools, send real-time notifications, and analyze fundraising activities without manual input, ensuring that resources are focused on the mission rather than administrative tasks.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
givebutter: {
type: "app",
app: "givebutter",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.givebutter.com/v1/contacts`,
headers: {
Authorization: `Bearer ${this.givebutter.$auth.api_key}`,
"Accept": `application/json`,
},
})
},
})
Develop, run and deploy your Node.js code in Pipedream workflows, using it between no-code steps, with connected accounts, or integrate Data Stores and File Stores.
This includes installing NPM packages, within your code without having to manage a package.json
file or running npm install
.
Below is an example of installing the axios
package in a Pipedream Node.js code step. Pipedream imports the axios
package, performs the API request, and shares the response with subsequent workflow steps:
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})