List
List external payments
List external payments
Query Parameters
Date string in RFC 3339 format. Only entries created after the specified time will be included. UTC time zone.
External Payment category to be returned.
Date string in RFC 3339 format. Only entries created before the specified time will be included. UTC time zone.
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.
Globally unique identifier for the financial account or card that will send the funds. Accepted type dependent on the program's use case.
Page size (for pagination).
External Payment result to be returned.
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.
Book transfer status to be returned.
Returns
curl https://api.lithic.com/v1/external_payments \
-H "Authorization: $LITHIC_API_KEY"
{
"data": [
{
"token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"category": "EXTERNAL_WIRE",
"created": "2019-12-27T18:11:19.117Z",
"currency": "currency",
"events": [
{
"token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"amount": 0,
"created": "2019-12-27T18:11:19.117Z",
"detailed_results": [
"APPROVED"
],
"effective_date": "2019-12-27",
"memo": "memo",
"result": "APPROVED",
"type": "EXTERNAL_WIRE_INITIATED"
}
],
"financial_account_token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"payment_type": "DEPOSIT",
"pending_amount": 0,
"result": "APPROVED",
"settled_amount": 0,
"status": "PENDING",
"updated": "2019-12-27T18:11:19.117Z",
"user_defined_id": "user_defined_id"
}
],
"has_more": true
}