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": "19e28ffc-c029-4678-9234-19596bd0c77e",
"ParentID": "b7cb0409-6320-47f8-85b9-28d86bc7ee85"
},
{
"StudentID": "19e28ffc-c029-4678-9234-19596bd0c77e",
"ParentID": "b7cb0409-6320-47f8-85b9-28d86bc7ee85"
}
]
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>b7cb0409-6320-47f8-85b9-28d86bc7ee85</ParentID>
<StudentID>19e28ffc-c029-4678-9234-19596bd0c77e</StudentID>
</StudentParent>
<StudentParent>
<ParentID>b7cb0409-6320-47f8-85b9-28d86bc7ee85</ParentID>
<StudentID>19e28ffc-c029-4678-9234-19596bd0c77e</StudentID>
</StudentParent>
</ArrayOfStudentParent>