An online donation platform providing organizations of all sizes a simple solution for collecting donations online.
Go to siteThe Donately API provides a suite of endpoints for managing fundraising activities, processing donations, and analyzing donor data. With Pipedream, you can automate donation tracking, engage donors with personalized communications, and sync fundraising data across various platforms. It's a powerful tool for nonprofits and charitable organizations looking to streamline their fundraising operations and gain deeper insights into their donor base.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
donately: {
type: "app",
app: "donately",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.donately.com/v2/people/me`,
headers: {
Authorization: `Bearer ${this.donately.$auth.api_token}`,
},
})
},
})
Automated Thank-You Emails: Trigger an email to send automatically through SendGrid or another email service each time a new donation is received via Donately. Customize the message with donor details and donation amount to create a personal touch.
Real-Time Donation Alerts: Set up a workflow to post a message in a Slack channel whenever a new donation comes in. This keeps teams informed and can foster a sense of community and urgency around fundraising campaigns.
Monthly Donation Reports: Schedule a monthly workflow that aggregates donation data from Donately, processes it to generate insights, and compiles a report. The report is then sent to a Google Sheet for easy sharing and analysis by stakeholders.
Donately uses API keys for authentication. When you connect your Donately account, Pipedream securely stores the keys so you can easily authenticate to Donately APIs in both code and no-code steps.
You can find your token by signing into Donately and visiting the API Integrations page.
Note that Donately's API requires a Base64 encoded API token, so make sure to enter the Base64 encoded value here.
You can get your Base64 encoded token via a command like,echo -n "{your_api_token_here}" | base64