POST api/lhphAmortization

Request Information

URI Parameters

None.

Body Parameters

LeaseAmortizationUnknowRequestDTO
NameDescriptionTypeAdditional information
UnknownField

string

None.

Request

LeaseAmortizationRequestDTO

None.

Request Formats

application/json, text/json

Sample:
{
  "unknownField": "sample string 1",
  "request": {
    "adjustedCapCost": 1.0,
    "balanceDue": 2.0,
    "monthlyDepreciation": 3.0,
    "rentalCharge": 4.0,
    "monthlyLeaseTax": 5.0,
    "salesTax": 6.0,
    "residualValue": 7.0,
    "residualInterestBehavior": "sample string 8",
    "firstPaymentDate": "2025-12-28T18:40:49.9162447+00:00",
    "anualInterest": 10.1,
    "loanDate": "2025-12-28T18:40:49.9162447+00:00",
    "frequency": "sample string 12",
    "paymentAmount": 13.0,
    "terms": 14,
    "termsWithDecimal": 15.0,
    "dealType": "sample string 16",
    "contract": {
      "compoundingDays": 1,
      "salesTaxDeferred": true,
      "compoundPeriod": "sample string 3",
      "computeMethod": "sample string 4"
    },
    "adjustLastPayment": true,
    "downPayments": [
      {
        "downPaymentAmount": 1.0,
        "downPaymentDate": "2025-12-28T18:40:49.9162447+00:00"
      },
      {
        "downPaymentAmount": 1.0,
        "downPaymentDate": "2025-12-28T18:40:49.9162447+00:00"
      }
    ]
  }
}

application/xml, text/xml

Sample:
<LeaseAmortizationUnknowRequestDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Automatrix.Tvalue.Services.Models.DTO">
  <Request>
    <AdjustLastPayment>true</AdjustLastPayment>
    <AnualInterest>10.1</AnualInterest>
    <Contract>
      <CompoundPeriod>sample string 3</CompoundPeriod>
      <CompoundingDays>1</CompoundingDays>
      <ComputeMethod>sample string 4</ComputeMethod>
      <SalesTaxDeferred>true</SalesTaxDeferred>
    </Contract>
    <DealType>sample string 16</DealType>
    <DownPayments>
      <DownPaymentDTO>
        <DownPaymentAmount>1</DownPaymentAmount>
        <DownPaymentDate>2025-12-28T18:40:49.9162447+00:00</DownPaymentDate>
      </DownPaymentDTO>
      <DownPaymentDTO>
        <DownPaymentAmount>1</DownPaymentAmount>
        <DownPaymentDate>2025-12-28T18:40:49.9162447+00:00</DownPaymentDate>
      </DownPaymentDTO>
    </DownPayments>
    <Frequency>sample string 12</Frequency>
    <LoanDate>2025-12-28T18:40:49.9162447+00:00</LoanDate>
    <PaymentAmount>13</PaymentAmount>
    <Terms>14</Terms>
    <TermsWithDecimal>15</TermsWithDecimal>
    <AdjustedCapCost>1</AdjustedCapCost>
    <BalanceDue>2</BalanceDue>
    <FirstPaymentDate>2025-12-28T18:40:49.9162447+00:00</FirstPaymentDate>
    <MonthlyDepreciation>3</MonthlyDepreciation>
    <MonthlyLeaseTax>5</MonthlyLeaseTax>
    <RentalCharge>4</RentalCharge>
    <ResidualInterestBehavior>sample string 8</ResidualInterestBehavior>
    <ResidualValue>7</ResidualValue>
    <SalesTax>6</SalesTax>
  </Request>
  <UnknownField>sample string 1</UnknownField>
</LeaseAmortizationUnknowRequestDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.