GET GetRenewalBillingDetails?leaseId={leaseId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
leaseId

integer

Required

Body Parameters

None.

Response Information

Resource Description

RenewalBillingRepository
NameDescriptionTypeAdditional information
successful

boolean

None.

message

string

None.

data

RenewalBillingDetails

None.

Response Formats

application/json, text/json

Sample:
{
  "successful": true,
  "message": "sample string 2",
  "data": {
    "billingDetails": [
      {
        "transactionCodeId": 1,
        "code": "sample string 2",
        "description": "sample string 3",
        "transactionTypeId": 4,
        "amount": 5.0,
        "taxPercent": 6.0,
        "taxAmount": 7.0,
        "totalAmount": 8.0,
        "prorateAmount": 9.0
      },
      {
        "transactionCodeId": 1,
        "code": "sample string 2",
        "description": "sample string 3",
        "transactionTypeId": 4,
        "amount": 5.0,
        "taxPercent": 6.0,
        "taxAmount": 7.0,
        "totalAmount": 8.0,
        "prorateAmount": 9.0
      }
    ],
    "leaseRent": 1.0,
    "monthlyRecurringBill": 2.0,
    "moveInProrateAmount": 3.0
  }
}

application/xml, text/xml

Sample:
<RenewalBillingRepository xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cybersoft.YottaResident.WebAPIs.Services">
  <data>
    <billingDetails>
      <BillingDetails>
        <amount>5</amount>
        <code>sample string 2</code>
        <description>sample string 3</description>
        <prorateAmount>9</prorateAmount>
        <taxAmount>7</taxAmount>
        <taxPercent>6</taxPercent>
        <totalAmount>8</totalAmount>
        <transactionCodeId>1</transactionCodeId>
        <transactionTypeId>4</transactionTypeId>
      </BillingDetails>
      <BillingDetails>
        <amount>5</amount>
        <code>sample string 2</code>
        <description>sample string 3</description>
        <prorateAmount>9</prorateAmount>
        <taxAmount>7</taxAmount>
        <taxPercent>6</taxPercent>
        <totalAmount>8</totalAmount>
        <transactionCodeId>1</transactionCodeId>
        <transactionTypeId>4</transactionTypeId>
      </BillingDetails>
    </billingDetails>
    <leaseRent>1</leaseRent>
    <monthlyRecurringBill>2</monthlyRecurringBill>
    <moveInProrateAmount>3</moveInProrateAmount>
  </data>
  <message>sample string 2</message>
  <successful>true</successful>
</RenewalBillingRepository>