GET api/JankariPortal/yearHomeSummary?acyear={acyear}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
acyear

string

Default value is

Body Parameters

None.

Response Information

Resource Description

Collection of HomeSummaryDto
NameDescriptionTypeAdditional information
totcenters

integer

None.

totschools

integer

None.

totenrollment

integer

None.

pgid

string

None.

pgname

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "totcenters": 1,
    "totschools": 1,
    "totenrollment": 1,
    "pgid": "sample string 1",
    "pgname": "sample string 2"
  },
  {
    "totcenters": 1,
    "totschools": 1,
    "totenrollment": 1,
    "pgid": "sample string 1",
    "pgname": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfJankariPortalController.HomeSummaryDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JankariPortalPIFAPI.Controllers">
  <JankariPortalController.HomeSummaryDto>
    <pgid>sample string 1</pgid>
    <pgname>sample string 2</pgname>
    <totcenters>1</totcenters>
    <totenrollment>1</totenrollment>
    <totschools>1</totschools>
  </JankariPortalController.HomeSummaryDto>
  <JankariPortalController.HomeSummaryDto>
    <pgid>sample string 1</pgid>
    <pgname>sample string 2</pgname>
    <totcenters>1</totcenters>
    <totenrollment>1</totenrollment>
    <totschools>1</totschools>
  </JankariPortalController.HomeSummaryDto>
</ArrayOfJankariPortalController.HomeSummaryDto>