List donations
Return a paginated list of individual donations for the authenticated group, with optional server-side filters on donation date, creation date, amount, contact, and donation price. Ordered by donation date (newest first) by default. Maximum limit is 1000.
date_from/date_to (donation date) or created_from/created_to.
Contacts / prices: repeat or comma-separate contact_id and donation_price_id.
Each donation carries amount (cents) and contact_id, so monthly totals and unique-donor counts are a direct sum/dedupe over one page set.Authorizations
OAuth2 access token. Pass the token in the Authorization header as Bearer <token>. The token is looked up in Redis to resolve the caller identity.
Query Parameters
Maximum number of items to return.
1 <= x <= 1000Number of items to skip.
x >= 0Only donations on or after this date (donation date, RFC 3339).
Only donations on or before this date (donation date, RFC 3339).
Only donations created on or after this date (RFC 3339).
Only donations created on or before this date (RFC 3339).
Minimum amount in cents (inclusive).
x >= 0Maximum amount in cents (inclusive).
x >= 0Filter by one or more contact IDs (repeat or comma-separate).
x >= 0Filter by one or more donation price IDs. See GET /v1/donation_prices.
x >= 0Sort column.
created_at, date, amount Sort direction.
asc, desc 
