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": "6ce136f2-9c0d-4793-8b6a-5fc8219292b5",
"ParentID": "fc7e185e-2db4-4a52-a411-7d46eed0ba2f"
},
{
"StudentID": "6ce136f2-9c0d-4793-8b6a-5fc8219292b5",
"ParentID": "fc7e185e-2db4-4a52-a411-7d46eed0ba2f"
}
]
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>fc7e185e-2db4-4a52-a411-7d46eed0ba2f</ParentID>
<StudentID>6ce136f2-9c0d-4793-8b6a-5fc8219292b5</StudentID>
</StudentParent>
<StudentParent>
<ParentID>fc7e185e-2db4-4a52-a411-7d46eed0ba2f</ParentID>
<StudentID>6ce136f2-9c0d-4793-8b6a-5fc8219292b5</StudentID>
</StudentParent>
</ArrayOfStudentParent>