GET api/StudentParents
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of StudentParent| Name | Description | Type | Additional information |
|---|---|---|---|
| StudentID | globally unique identifier |
None. |
|
| ParentID | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"StudentID": "b2e35e80-bbf3-41be-8191-eea9946c387c",
"ParentID": "5ae949c8-cfb2-4aae-81d1-cdeeb971f0e3"
},
{
"StudentID": "b2e35e80-bbf3-41be-8191-eea9946c387c",
"ParentID": "5ae949c8-cfb2-4aae-81d1-cdeeb971f0e3"
}
]
application/xml, text/xml
Sample:
<ArrayOfStudentParent xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusAPI.Models">
<StudentParent>
<ParentID>5ae949c8-cfb2-4aae-81d1-cdeeb971f0e3</ParentID>
<StudentID>b2e35e80-bbf3-41be-8191-eea9946c387c</StudentID>
</StudentParent>
<StudentParent>
<ParentID>5ae949c8-cfb2-4aae-81d1-cdeeb971f0e3</ParentID>
<StudentID>b2e35e80-bbf3-41be-8191-eea9946c387c</StudentID>
</StudentParent>
</ArrayOfStudentParent>