FundraiseUp¶
FundraiseUp is a modern donation platform that helps non-profits increase their online fundraising revenue.
omniload supports FundraiseUp as a source.
URI format¶
The URI format for FundraiseUp is:
fundraiseup://?api_key=<api_key>
URI parameters:
api_key: Your FundraiseUp API key (required).
Example usage¶
Assuming your API key is your_api_key, you can ingest donations into DuckDB using:
omniload ingest \
--source-uri 'fundraiseup://?api_key=your_api_key' \
--source-table 'donations' \
--dest-uri duckdb:///fundraiseup.duckdb \
--dest-table 'main.donations'
Tables¶
The FundraiseUp source supports the following tables:
Table |
PK |
Inc Key |
Inc Strategy |
Details |
|---|---|---|---|---|
|
id |
- |
replace |
All donation records including amounts, supporters, and payment details |
|
id |
- |
merge |
All donation records including amounts, supporters, and payment details. Loads records incrementally. |
|
id |
- |
replace |
Audit log events for tracking changes and activities |
|
id |
- |
replace |
Fundraiser campaigns (requires appropriate API permissions) |
|
id |
- |
replace |
Recurring donation plans and subscription details |
|
id |
- |
replace |
Donor/supporter information including contact details |
Use one of these as the --source-table parameter in the omniload ingest command.
Notes¶
Authentication: The FundraiseUp API uses Bearer token authentication. Make sure your API key has the necessary permissions for the resources you want to access.
Date Filtering: The API does not support date filtering for any of the endpoints.
Permissions: The
fundraisersendpoint may return a 403 Forbidden error if your API key doesn’t have the required permissions. Contact FundraiseUp support to enable access if needed.
Example: Ingesting all available data¶
To ingest all available data from FundraiseUp:
# Ingest donations
omniload ingest \
--source-uri 'fundraiseup://?api_key=your_api_key' \
--source-table 'donations' \
--dest-uri duckdb:///fundraiseup.db \
--dest-table 'main.donations'
# Ingest events
omniload ingest \
--source-uri 'fundraiseup://?api_key=your_api_key' \
--source-table 'events' \
--dest-uri duckdb:///fundraiseup.db \
--dest-table 'main.events'
# Ingest recurring plans
omniload ingest \
--source-uri 'fundraiseup://?api_key=your_api_key' \
--source-table 'recurring_plans' \
--dest-uri duckdb:///fundraiseup.db \
--dest-table 'main.recurring_plans'
# Ingest supporters
omniload ingest \
--source-uri 'fundraiseup://?api_key=your_api_key' \
--source-table 'supporters' \
--dest-uri duckdb:///fundraiseup.db \
--dest-table 'main.supporters'