get https://api.fundraisingbox.com/v1/donations.json
Returns a collection of confirmed donations that fits to a given criteria array.
Pagination
Maximum is 100 entries, use the page parameter to get the next results.
(with pagination: /donations.json?page={page_number})
Filter by criteria
GET /donations.json?amount_min={value}&page={page_number}
Returns a collection of donations that fits to the given criteria.
These criteria are currently available:
Criterion | Description | Type |
---|---|---|
amount_min | Minimum amount | float |
amount_max | Maximum amount | float |
date_min | Minimum donation date | date |
date_max | Maximum donation date | date |
received_min | Minimum received date | date |
received_max | Maximum received date | date |
ident_id_min | Minimum ident id | integer |
ident_id_max | Maximum ident id | integer |
receipt_status | Wish for donation receipt | Enum ("receipt_now", "no_receipt", "receipt_end_of_year", "receipt_sent", "receipt_never") |
fb_project_id | The ID of a project | integer |
fb_type_id | The ID of a payment type | integer |
fb_source_id | The ID of a source | integer |
fb_person_id | The ID of a person | integer |
fb_payment_form_configuration_id | The ID of a payment form | integer |
fb_payout_id | The ID of a payout object | integer |
ids (separated by commas) | A comma separated list of IDs | string |
is_test | Filter test donations | Enum ("yes", "no", "all") - default is "all" |
search_id | The ID of a smart search | integer |
transaction_id | The FB-T ID | integer |
external_donation_id | An external id stored at the donation | string |
If no donations with these criteria exist, an empty donation container will be returned.