added
Funding API
5 months ago
Funding API
In the 5th May release, GET /v2/post-sale/fundings/report payload was enhanced with an additional field:
- merchantTransactionId (String)
- The merchants' transaction identifier that was sent to ChargeAfter when settle\refund API was called.
The payload with the additional field.
{
"records": [
{
"chargeId": "6663c0bd6c45635eaea75aaa",
"discountAmount": 10,
"email": "[email protected]",
"firstName": "John",
"fundedAt": "2023-11-03T00:00:00Z",
"lastName": "Smith",
"lenderName": "Finara",
"merchantOrderId": "12345",
"netAmount": 89.99,
"status": "RECONCILED",
"transactionAmount": 99.99,
"transactionDate": "2023-11-03T00:00:00Z",
"transactionId": "6663c0bd6c45635eaea75aaa",
"transactionType": "Settle",
"productType":"LineOfCredit",
"promoCode":"123",
"merchantTransactionId":"12345",
"updatedAt": "2023-11-03T00:00:00Z"
}
]
}