GET api/v1/student/mhs/{schoolCode}/{studentNumber}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| schoolCode | integer |
Required |
|
| studentNumber | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of MedicalHistory| Name | Description | Type | Additional information |
|---|---|---|---|
| SchoolCode | integer |
None. |
|
| StudentNumber | integer |
None. |
|
| StudentId | integer |
None. |
|
| SQ | integer |
None. |
|
| CD | string |
None. |
|
| DT | string |
None. |
|
| CO | string |
None. |
|
| GR | integer |
None. |
|
| AG | integer |
None. |
|
| PC | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"SchoolCode": 1,
"StudentNumber": 2,
"StudentId": 3,
"SQ": 4,
"CD": "sample string 5",
"DT": "sample string 6",
"CO": "sample string 7",
"GR": 8,
"AG": 9,
"PC": "sample string 10"
},
{
"SchoolCode": 1,
"StudentNumber": 2,
"StudentId": 3,
"SQ": 4,
"CD": "sample string 5",
"DT": "sample string 6",
"CO": "sample string 7",
"GR": 8,
"AG": 9,
"PC": "sample string 10"
}
]
application/xml, text/xml
Sample:
<ArrayOfMedicalHistory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SchoolMint.Aeries.Data">
<MedicalHistory>
<AG>9</AG>
<CD>sample string 5</CD>
<CO>sample string 7</CO>
<DT>sample string 6</DT>
<GR>8</GR>
<PC>sample string 10</PC>
<SQ>4</SQ>
<SchoolCode>1</SchoolCode>
<StudentId>3</StudentId>
<StudentNumber>2</StudentNumber>
</MedicalHistory>
<MedicalHistory>
<AG>9</AG>
<CD>sample string 5</CD>
<CO>sample string 7</CO>
<DT>sample string 6</DT>
<GR>8</GR>
<PC>sample string 10</PC>
<SQ>4</SQ>
<SchoolCode>1</SchoolCode>
<StudentId>3</StudentId>
<StudentNumber>2</StudentNumber>
</MedicalHistory>
</ArrayOfMedicalHistory>