put https://loanpro.simnang.com/api/public/api/1/odata.svc/Loans()
This request cancels an AutoPay on a loan.
Click here to learn more about this request
AutoPays allow users to schedule automatically processed payments:
- This request will cancel a scheduled AutoPay on an account.
- Instead of using a DELETE method in the request, an AutoPay is cancelled by updating its status to
status.autopay.cancelled
. - A successful request will remove the AutoPay from the LoanPro UI and update its
deleted
value in the database.
For an example of how AutoPays work within the UI, take a look at our Scheduling a New AutoPay article.
Database
For information regarding AutoPay database tables, take a look at the following articles:
- Database – AutoPay Main Table (loan_autopay_entity)
- Database – Defaults Autopay (defaults_autopay)
- Database – Holding Account Autopay Info (holding_account_autopay_entity)
{
"Autopays": {
"results": [
{
"status": "autopay.status.cancelled",
"__id": 938,
"__update": true
}
]
}
}