GET Analytics/GetTransactionPerformance?historyfrom={historyfrom}&historyto={historyto}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
historyfrom

date

Required

historyto

date

Required

Body Parameters

None.

Response Information

Resource Description

Collection of TransactionPerformance
NameDescriptionTypeAdditional information
transactionmonth

string

None.

transactionyear

integer

None.

totalnumberofunitsold

integer

None.

totalamountsold

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "transactionmonth": "sample string 1",
    "transactionyear": 2,
    "totalnumberofunitsold": 3,
    "totalamountsold": 4.0
  },
  {
    "transactionmonth": "sample string 1",
    "transactionyear": 2,
    "totalnumberofunitsold": 3,
    "totalamountsold": 4.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfTransactionPerformance xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Realty.Model">
  <TransactionPerformance>
    <totalamountsold>4</totalamountsold>
    <totalnumberofunitsold>3</totalnumberofunitsold>
    <transactionmonth>sample string 1</transactionmonth>
    <transactionyear>2</transactionyear>
  </TransactionPerformance>
  <TransactionPerformance>
    <totalamountsold>4</totalamountsold>
    <totalnumberofunitsold>3</totalnumberofunitsold>
    <transactionmonth>sample string 1</transactionmonth>
    <transactionyear>2</transactionyear>
  </TransactionPerformance>
</ArrayOfTransactionPerformance>