Skip to main content

Fundraise Up API Endpoints

The Fundraise Up web dashboard is available at:

https://dashboard.fundraiseup.com

API Endpoints

The Fundraise Up integration uses the Fundraise Up API, a RESTful API that provides access to donation and supporter data within a Fundraise Up account.

Base URL:

https://[API Url]

The [API Url] value is configured in the iPaaS.com Subscription Settings. The default is api.fundraiseup.com/v1.

Table of Contents


Donation Endpoints

List Donations (GET)

Retrieves a page of donation records, ordered newest-first. Used during the scheduled donation poll and during initialization to detect new donations that should be transferred to iPaaS.com.

[Base URL]/donations?limit={limit}&ending_before={lastSeenId}

Query parameters:

Parameter

Description

limit

Page size, up to 100.

ending_before

Cursor: returns donations newer than this donation id. Used during ongoing polling to retrieve donations created after the last one processed.

starting_after

Cursor: returns donations older than this donation id. Used during pagination to walk backward through historical pages.

Get a Donation by Id (GET)

Retrieves a single donation record by its Fundraise Up donation id. Used during TO iPaaS.com transfers to retrieve the full donation (with its nested payment, supporter, campaign, designation, recurring plan, and custom field data) before dispatching it to iPaaS.com.

[Base URL]/donations/{Id}


Supporter Endpoints

Get a Supporter by Id (GET)

Retrieves a single supporter (donor) record by its Fundraise Up supporter id. Used during the Donation prerequisite transfer to retrieve the full supporter record (with its nested address) before the related iPaaS.com Customer is created or updated.

[Base URL]/supporters/{Id}


Authorization Endpoint

The Fundraise Up API uses a static API key passed as an HTTP Bearer token on every request — there is no separate authorization endpoint and no token exchange:

Authorization: Bearer <API Key>

The <API Key> value is configured in the iPaaS.com Subscription Settings. See Fundraise Up Installation Instructions for how to obtain an API key from your Fundraise Up account and configure it on the subscription.

Related Documents

Did this answer your question?