GET api/Site/Stats/TileBySite/{AppID}/{DataType}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| AppID | integer |
Required |
|
| DataType | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Tile| Name | Description | Type | Additional information |
|---|---|---|---|
| DataType | string |
None. |
|
| CurMTH | decimal number |
None. |
|
| LstMTH | decimal number |
None. |
|
| LstYRMTH | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"DataType": "sample string 1",
"CurMTH": 2.1,
"LstMTH": 3.1,
"LstYRMTH": 4.1
}
text/html
Sample:
{"DataType":"sample string 1","CurMTH":2.1,"LstMTH":3.1,"LstYRMTH":4.1}
application/xml, text/xml
Sample:
<Tile xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRMAPI.Models"> <CurMTH>2.1</CurMTH> <DataType>sample string 1</DataType> <LstMTH>3.1</LstMTH> <LstYRMTH>4.1</LstYRMTH> </Tile>