List
List funding events
get/v1/funding_events
Get all funding events for program
Query Parameters
ending_beforestring
optional
A cursor representing an item's token before which a page of results should end. Used to retrieve the previous page of results before this item.
formatuuid
page_sizenumber
optional
Page size (for pagination).
maximum100
minimum1
starting_afterstring
optional
A cursor representing an item's token after which a page of results should begin. Used to retrieve the next page of results after this item.
Returns
dataarray of object
Funding Event Response
has_moreboolean
Request example Request
curl https://api.lithic.com/v1/funding_events \
-H "Authorization: $LITHIC_API_KEY"
200 Example
{
"data": [
{
"token": "b68b7424-aa69-4cbc-a946-30d90181b621",
"collection_resource_type": "PAYMENT",
"collection_tokens": [
"b68b7424-aa69-4cbc-a946-30d90181b621"
],
"created": "2024-01-01T00:00:00Z",
"high_watermark": "2024-01-01T00:00:00Z",
"network_settlement_summary": [
{
"network_settlement_date": "2024-01-01",
"settled_gross_amount": 0
}
],
"previous_high_watermark": "2024-01-01T00:00:00Z",
"updated": "2024-01-01T00:00:00Z"
}
],
"has_more": true
}