An online donation platform providing organizations of all sizes a simple solution for collecting donations online.
Go to siteWith the Donately API, you can build applications that:
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}`,
},
})
},
})
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