get https://api.fundraisingbox.com/v1/payouts.json
Returns a collection of payouts.
Pagination
Maximum is 100 entries, use the page parameter to get the next results.
(with pagination: /payouts.json?page={page_number})
Filter by criteria
GET /payouts.json?amount_min={value}&amount_max={value}&page={page_number}
Returns a collection of payouts that fits to the given criteria.
These criteria are currently available:
Criterion | Description | Type |
---|---|---|
amount_min | Minimum amount | float |
amount_max | Maximum amount | float |
created_time_min | Minimum creation time | datetime |
created_time_max | Maximum creation time | datetime |
external_payout_id | The external ID of the payment | string |
fb_type_id | An ID of a payment type | integer |
id_min | Minimum ID | integer |
id_max | Maximum ID | integer |
If no payouts with these criteria exist, an empty payouts container will be returned.