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": "3eef085c-60b9-4949-9e79-9d275e7b77d1",
"ParentID": "8c00a2db-7d1f-4beb-9db2-e174f23c4dc6"
},
{
"StudentID": "3eef085c-60b9-4949-9e79-9d275e7b77d1",
"ParentID": "8c00a2db-7d1f-4beb-9db2-e174f23c4dc6"
}
]
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>8c00a2db-7d1f-4beb-9db2-e174f23c4dc6</ParentID>
<StudentID>3eef085c-60b9-4949-9e79-9d275e7b77d1</StudentID>
</StudentParent>
<StudentParent>
<ParentID>8c00a2db-7d1f-4beb-9db2-e174f23c4dc6</ParentID>
<StudentID>3eef085c-60b9-4949-9e79-9d275e7b77d1</StudentID>
</StudentParent>
</ArrayOfStudentParent>