GET api/EnGetMonth?StudentID={StudentID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
StudentID

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of StudentMonth
NameDescriptionTypeAdditional information
MonthName

string

None.

Response Formats

application/json, text/json, text/html

Sample:
[
  {
    "monthName": "sample string 1"
  },
  {
    "monthName": "sample string 1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfStudentMonth xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SchoolMaster_API.Controllers">
  <StudentMonth>
    <MonthName>sample string 1</MonthName>
  </StudentMonth>
  <StudentMonth>
    <MonthName>sample string 1</MonthName>
  </StudentMonth>
</ArrayOfStudentMonth>