POST api/amortizationSchedules
Request Information
URI Parameters
None.
Body Parameters
AmortizationBaseRequestDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| AnualInterest | decimal number |
None. |
|
| LoanDate | date |
None. |
|
| Frequency | string |
None. |
|
| FinanceAmount | decimal number |
None. |
|
| FirstPaymentDate | date |
None. |
|
| PaymentAmount | decimal number |
None. |
|
| CompoundingDays | integer |
None. |
|
| Terms | integer |
None. |
|
| CompoundPeriod | string |
None. |
|
| ComputedMethod | string |
None. |
|
| AdjustLastPayment | boolean |
None. |
|
| ResidualAmount | decimal number |
None. |
|
| ResidualInterestBehavior | ResidualInterestBehavior |
None. |
|
| payment | BasicPayment |
None. |
|
| IsSalesTaxDeferred | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"anualInterest": 1.1,
"loanDate": "2025-12-28T18:39:52.6330495+00:00",
"frequency": "sample string 3",
"financeAmount": 4.0,
"firstPaymentDate": "2025-12-28T18:39:52.6330495+00:00",
"paymentAmount": 6.0,
"compoundingDays": 7,
"terms": 8,
"compoundPeriod": "sample string 9",
"computedMethod": "sample string 10",
"adjustLastPayment": true,
"residualAmount": 12.0,
"residualInterestBehavior": 0,
"payment": {
"amount": 1.0,
"date": "2025-12-28T18:39:52.6330495+00:00"
},
"isSalesTaxDeferred": true
}
application/xml, text/xml
Sample:
<AmortizationBaseRequestDTO 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>1.1</AnualInterest>
<CompoundPeriod>sample string 9</CompoundPeriod>
<CompoundingDays>7</CompoundingDays>
<ComputedMethod>sample string 10</ComputedMethod>
<FinanceAmount>4</FinanceAmount>
<FirstPaymentDate>2025-12-28T18:39:52.6330495+00:00</FirstPaymentDate>
<Frequency>sample string 3</Frequency>
<IsSalesTaxDeferred>true</IsSalesTaxDeferred>
<LoanDate>2025-12-28T18:39:52.6330495+00:00</LoanDate>
<PaymentAmount>6</PaymentAmount>
<ResidualAmount>12</ResidualAmount>
<ResidualInterestBehavior>Undefined</ResidualInterestBehavior>
<Terms>8</Terms>
<payment>
<Amount>1</Amount>
<Date>2025-12-28T18:39:52.6330495+00:00</Date>
</payment>
</AmortizationBaseRequestDTO>
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.