POST api/Dashboard/GetTemple_Counts
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
TempleDatabyCount| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseCode | integer |
None. |
|
| Temple_count | Collection of Templecount |
None. |
Response Formats
application/json, text/json
Sample:
{
"Temple_count": [
{
"individual_count": 1,
"Total_Count": 2
},
{
"individual_count": 1,
"Total_Count": 2
}
],
"ResponseCode": 1
}
application/xml, text/xml
Sample:
<TempleDatabyCount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TempleDirectory.Controllers">
<ResponseCode>1</ResponseCode>
<Temple_count>
<Templecount>
<Total_Count>2</Total_Count>
<individual_count>1</individual_count>
</Templecount>
<Templecount>
<Total_Count>2</Total_Count>
<individual_count>1</individual_count>
</Templecount>
</Temple_count>
</TempleDatabyCount>