Auto Prompts
The Auto Prompts module allows the calling application to build up a final proceeds amount based upon the usual elements found in an auto or boat sale. Thus, the price, down payment, trade in value, and taxes are just some of the elements taken into consideration.
Sample Request
The following is a sample request for an Auto Prompts calculation:
<inAUTO>
<Price>55000.00</Price>
<CashDown>10000.00</CashDown>
<GrossTrade>5000.00</GrossTrade>
<Lien>225</Lien>
<Rebate ApplyToBalance="true">500.00</Rebate>
<ServiceContract>150.00</ServiceContract>
<TaxedFees>50.00</TaxedFees>
<NonTaxedFees>75.00</NonTaxedFees>
<Tax Method="PriceTrade" Rate="7.250" RebateReduce="true"></Tax>
<LuxTax Rate="10.000" Threshold="50000.00" />
</inAUTO>
Sample Response
The following is a sample response generated by the previous sample request:
<?xml version="1.0" standalone="no" ?>
<!DOCTYPE outAUTO SYSTEM "outAUTO.dtd">
<outAUTO>
<Results>
<Description>Valid Calculation</Description>
<Proceeds>44092.38</Proceeds>
</Results>
<Auto>
<Price>55000.00</Price>
<Tax Rate="7.25" Method="PriceTrade">3592.38</Tax>
<LuxTax Rate="10.000" Threshold="50000.00">500.00</LuxTax>
<PricePlusTax>49550.00</PricePlusTax>
<CashDown>10000.00</CashDown>
<GrossTrade>5000.00</GrossTrade>
<Lien>225.00</Lien>
<Rebate ApplyToBalance="true">500.00</Rebate>
<TotalDown>15275.00</TotalDown>
<ServiceContract>150.00</ServiceContract>
<TaxedFees>50.00</TaxedFees>
<NonTaxedFees>75.00</NonTaxedFees>
<TotalVehicleFees>275.00</TotalVehicleFees>
</Auto>
</outAUTO>