POST api/APRZ
Request Information
URI Parameters
None.
Body Parameters
BHPHAmortizationRequestDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| FinanceAmount | decimal number |
None. |
|
| OriginationFee | decimal number |
None. |
|
| LoanAmountNoTax | decimal number |
None. |
|
| FirstPaymentDate | date |
None. |
|
| Discount | decimal number |
None. |
|
| Payment | BasicPayment |
None. |
|
| AnualInterest | decimal number |
None. |
|
| LoanDate | date |
None. |
|
| Frequency | string |
None. |
|
| PaymentAmount | decimal number |
None. |
|
| Terms | integer |
None. |
|
| TermsWithDecimal | decimal number |
None. |
|
| DealType | string |
None. |
|
| Contract | Contract |
None. |
|
| AdjustLastPayment | boolean |
None. |
|
| DownPayments | Collection of DownPaymentDTO |
None. |
Request Formats
application/json, text/json
Sample:
{
"financeAmount": 1.0,
"originationFee": 2.0,
"loanAmountNoTax": 3.0,
"firstPaymentDate": "2025-12-28T18:39:29.2727893+00:00",
"discount": 4.0,
"payment": {
"amount": 1.0,
"date": "2025-12-28T18:39:29.2727893+00:00"
},
"anualInterest": 5.1,
"loanDate": "2025-12-28T18:39:29.2727893+00:00",
"frequency": "sample string 7",
"paymentAmount": 8.0,
"terms": 9,
"termsWithDecimal": 10.0,
"dealType": "sample string 11",
"contract": {
"compoundingDays": 1,
"salesTaxDeferred": true,
"compoundPeriod": "sample string 3",
"computeMethod": "sample string 4"
},
"adjustLastPayment": true,
"downPayments": [
{
"downPaymentAmount": 1.0,
"downPaymentDate": "2025-12-28T18:39:29.2727893+00:00"
},
{
"downPaymentAmount": 1.0,
"downPaymentDate": "2025-12-28T18:39:29.2727893+00:00"
}
]
}
application/xml, text/xml
Sample:
<BHPHAmortizationRequestDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Automatrix.Tvalue.Services.Models.DTO">
<AdjustLastPayment>true</AdjustLastPayment>
<AnualInterest>5.1</AnualInterest>
<Contract>
<CompoundPeriod>sample string 3</CompoundPeriod>
<CompoundingDays>1</CompoundingDays>
<ComputeMethod>sample string 4</ComputeMethod>
<SalesTaxDeferred>true</SalesTaxDeferred>
</Contract>
<DealType>sample string 11</DealType>
<DownPayments>
<DownPaymentDTO>
<DownPaymentAmount>1</DownPaymentAmount>
<DownPaymentDate>2025-12-28T18:39:29.2727893+00:00</DownPaymentDate>
</DownPaymentDTO>
<DownPaymentDTO>
<DownPaymentAmount>1</DownPaymentAmount>
<DownPaymentDate>2025-12-28T18:39:29.2727893+00:00</DownPaymentDate>
</DownPaymentDTO>
</DownPayments>
<Frequency>sample string 7</Frequency>
<LoanDate>2025-12-28T18:39:29.2727893+00:00</LoanDate>
<PaymentAmount>8</PaymentAmount>
<Terms>9</Terms>
<TermsWithDecimal>10</TermsWithDecimal>
<Discount>4</Discount>
<FinanceAmount>1</FinanceAmount>
<FirstPaymentDate>2025-12-28T18:39:29.2727893+00:00</FirstPaymentDate>
<OriginationFee>2</OriginationFee>
<Payment>
<Amount>1</Amount>
<Date>2025-12-28T18:39:29.2727893+00:00</Date>
</Payment>
</BHPHAmortizationRequestDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.