GET api/Employee/GetDSAnalysisCount?whr={whr}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| whr | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of GetDSAnalysisCount_Result| Name | Description | Type | Additional information |
|---|---|---|---|
| academicyear | string |
None. |
|
| statecount | integer |
None. |
|
| enrollcount | integer |
None. |
|
| femalecount | decimal number |
None. |
|
| malecount | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"academicyear": "sample string 1",
"statecount": 2,
"enrollcount": 3,
"femalecount": 4.0,
"malecount": 5.0
},
{
"academicyear": "sample string 1",
"statecount": 2,
"enrollcount": 3,
"femalecount": 4.0,
"malecount": 5.0
}
]
application/xml, text/xml
Sample:
<ArrayOfGetDSAnalysisCount_Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JankariPortalPIFAPI.Models">
<GetDSAnalysisCount_Result>
<academicyear>sample string 1</academicyear>
<enrollcount>3</enrollcount>
<femalecount>4</femalecount>
<malecount>5</malecount>
<statecount>2</statecount>
</GetDSAnalysisCount_Result>
<GetDSAnalysisCount_Result>
<academicyear>sample string 1</academicyear>
<enrollcount>3</enrollcount>
<femalecount>4</femalecount>
<malecount>5</malecount>
<statecount>2</statecount>
</GetDSAnalysisCount_Result>
</ArrayOfGetDSAnalysisCount_Result>