Use OFFER OID field to get results
| Parameter | Type | Reqd | Description | Options |
|---|---|---|---|---|
| offer_oid | string | • | Quote oid | |
| products | text | Products |
| Parameter | Type | Description |
|---|---|---|
| status | integer | Status |
| response | array | Offer properties |
| response.offer_oid | string | Offer OID |
| response.monthly_payment | float | Monthly Payment |
| response.final_payment | float | Final Payment |
| response.gross_rate | float | Gross Rate |
| response.apr | float | APR |
| response.credit_charge | float | Credit Charge |
| response.total_payable | float | Total Payable |
Json request example
{
"ajax_url": "/api/offer/calcloan",
"username": "###",
"password": "###",
"offer_oid": 1000001,
"main_product": "building",
"products": "[\"ad\", \"home_emergency\", \"legal_protection\"]"
}
Json response example
{
"status": 1,
"response": {
"monthly_payment": 137.37,
"final_payment": 137.43,
"gross_rate": 11.00,
"apr": 29.41,
"credit_charge": 148.50,
"total_payable": 1648.5
},
"apirequest_oid": 10001194
}