GET Brokerage/GetSummary?brokeragetype={brokeragetype}&datefrom={datefrom}&dateto={dateto}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| brokeragetype | string |
Required |
|
| datefrom | string |
Required |
|
| dateto | string |
Required |
Body Parameters
None.
Response Information
Resource Description
TransactionSummary| Name | Description | Type | Additional information |
|---|---|---|---|
| totalunitsold | integer |
None. |
|
| totalsellingprice | decimal number |
None. |
|
| totaldownpayment | decimal number |
None. |
|
| totalreservation | decimal number |
None. |
|
| totaldiscount | decimal number |
None. |
|
| totalpayment | decimal number |
None. |
|
| brokerage_totalunitsold | integer |
None. |
|
| brokerage_totalsellingprice | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"totalunitsold": 1,
"totalsellingprice": 2.0,
"totaldownpayment": 3.0,
"totalreservation": 4.0,
"totaldiscount": 5.0,
"totalpayment": 6.0,
"brokerage_totalunitsold": 7,
"brokerage_totalsellingprice": 8.0
}
application/xml, text/xml
Sample:
<TransactionSummary xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Realty.Model"> <brokerage_totalsellingprice>8</brokerage_totalsellingprice> <brokerage_totalunitsold>7</brokerage_totalunitsold> <totaldiscount>5</totaldiscount> <totaldownpayment>3</totaldownpayment> <totalpayment>6</totalpayment> <totalreservation>4</totalreservation> <totalsellingprice>2</totalsellingprice> <totalunitsold>1</totalunitsold> </TransactionSummary>