/
Create installment loan t...
Creates a customer payment plan for the borrower in accordance with SCRA regulations. Only applicable to installment loans.
Security
oauth2(Required scopes: loan:paymentplan.scra.create) or bearerAuth or apiKeyHeader
The annual interest rate for the period defined. Format is decimal. For example, 0.01 is 1% annual rate, 0.2 is 20% annual rate.
Default:0.06
When set to true, the system will waive any fees that were charged during the period.
Default:true
When set to false, the system will NOT send a loanPaymentScheduleChanged notice to the borrower.
Default:true
POST
- oauth2
- bearerAuth
- apiKeyHeader
curl -i -X POST \
'https://sandboxapi.peach.finance/api/people/{personId}/loans/{loanId}/payment-plan-scra?sync=false' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"annualRate": 0.06,
"caseId": "string",
"endDate": "2019-08-24",
"isCancelFees": true,
"sendNotice": true,
"startDate": "2019-08-24"
}'Response
- string or null
- integer
{ "count": 0, "status": 0, "data": { "isLocked": true, "paymentFrequency": "weekly", "schedule": [ … ], "specificDays": [ … ] } }