added
Funding API
8 months ago
Funding API
We keep updating our API, exposing more options to our merchants, when integrating with our funding API. In the 5th March release, GET /v2/post-sale/fundings/report payload was enhanced with two more fields:
- ProductType (String)
- The product type of the original lender's offer for the purchase.
- Possible values:
"LineOfCredit",
"Installments",
"LeaseToOwn",
"MerchantSelfFinancing"
- PromoCode (String)
- The promo code of the original lender's offer for the purchase.
- Example: "123"
- The promo code of the original lender's offer for the purchase.
The payload with the additional two fields
{
"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",
"updatedAt": "2023-11-03T00:00:00Z"
}
]
}