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": "ef7eda46-4e5b-4ff7-bb36-1aa62cbf1382",
"ParentID": "4fe496ca-8210-449a-a844-d031e95c3b0b"
},
{
"StudentID": "ef7eda46-4e5b-4ff7-bb36-1aa62cbf1382",
"ParentID": "4fe496ca-8210-449a-a844-d031e95c3b0b"
}
]
application/xml, text/xml
Sample:
<ArrayOfStudentParent xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParentAPI.Models">
<StudentParent>
<ParentID>4fe496ca-8210-449a-a844-d031e95c3b0b</ParentID>
<StudentID>ef7eda46-4e5b-4ff7-bb36-1aa62cbf1382</StudentID>
</StudentParent>
<StudentParent>
<ParentID>4fe496ca-8210-449a-a844-d031e95c3b0b</ParentID>
<StudentID>ef7eda46-4e5b-4ff7-bb36-1aa62cbf1382</StudentID>
</StudentParent>
</ArrayOfStudentParent>