This object represents refunds. Various situations require full or partial refunds of a loan. Depending on the refund amount and whether the borrower has made payments, a refund may also trigger a reimbursement to the borrower.
The refund endpoint will execute a full or partial refund according to the refundAmount
specified.
A full refund is equal to the amountFinancedAtOrigination
. An atFaultParty
must also be specified,
in order to trigger the corresponding accounting entries related to billing for the refund.
Loan Refund
{- "refundDate": "2019-08-24",
- "refundTimeOfDay": {
- "hour": 23,
- "minute": 59,
- "second": 0
}, - "refundAmount": 0,
- "atFaultParty": "loanOwner",
- "caseId": "string",
- "refundDetails": {
- "description": "Refund",
- "pointOfSaleType": "online",
- "categoryId": "string",
- "merchantId": "string",
- "merchantName": "string",
- "metadata": { }
}
}
{- "status": 0,
- "message": "string",
- "data": {
- "refundDate": "2019-08-24",
- "refundAmount": 0,
- "originalAmount": 0,
- "isFullRefund": true,
- "atFaultParty": "loanOwner",
- "caseId": "string",
- "refundDetails": {
- "description": "Refund",
- "pointOfSaleType": "online",
- "categoryId": "string",
- "merchantId": "string",
- "merchantName": "string",
- "metadata": { }
}
}
}
Returns a list of all prior refunds for the loan, as well as the remaining eligible refund amount.
Loan Refund
{- "status": 0,
- "message": "string",
- "data": {
- "eligibleRefundAmount": 0,
- "refunds": [
- {
- "refundDate": "2019-08-24",
- "refundAmount": 0,
- "originalAmount": 0,
- "isFullRefund": true,
- "atFaultParty": "loanOwner",
- "caseId": "string",
- "refundDetails": {
- "description": "Refund",
- "pointOfSaleType": "online",
- "categoryId": "string",
- "merchantId": "string",
- "merchantName": "string",
- "metadata": { }
}
}
]
}
}
Returns a list of all prior refunds for the loan, as well as the remaining eligible refund amount.
Loan Refund
{- "refundDate": "2019-08-24",
- "refundAmount": 0,
- "originalAmount": 0,
- "isFullRefund": true,
- "atFaultParty": "loanOwner",
- "caseId": "string",
- "refundDetails": {
- "description": "Refund",
- "pointOfSaleType": "online",
- "categoryId": "string",
- "merchantId": "string",
- "merchantName": "string",
- "metadata": { }
}
}