GET api/MrGetMonth?StudentID={StudentID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| StudentID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of StudentMonth| Name | Description | Type | Additional 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>