Returns a collection of transactions.
Important: transactions vs. donations
If you would like to retrieve donation data please use donations.xml! This transactions.xml is only suitable for some special cases if you need data immediately after the donation.
While a transaction offers raw data from the donation form donations have a higher data quality and are available for manual created donations as well.
Pagination
Maximum is 100 entries, use the page parameter to get the next results.
(with pagination: /transactions.xml?page={page_number})
List by criterias
GET /transactions.xml?criteria[amount_min]={value}&page={page_number}
Returns a collection of transactions that fits to a given criteria array.
Maximum is 100 entries, use the page parameter to get the next results.
These criteria are currently available:
token
amount_min
amount_max
date_min
date_max
fb_type_id
fb_source_id
fb_payment_form_configuration_id
status
recurring
meta_info
Example: You can find a transaction by its token with the following request:
GET /transactions.xml?criteria[token]={value}
Empty result
If no transaction with these criteria exist, an empty transaction container will be returned.