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": "a84ff574-bd42-4b18-9078-edbbf6047499",
"ParentID": "fab081b2-b618-460e-9f2c-610fd6d9e7cf"
},
{
"StudentID": "a84ff574-bd42-4b18-9078-edbbf6047499",
"ParentID": "fab081b2-b618-460e-9f2c-610fd6d9e7cf"
}
]
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>fab081b2-b618-460e-9f2c-610fd6d9e7cf</ParentID>
<StudentID>a84ff574-bd42-4b18-9078-edbbf6047499</StudentID>
</StudentParent>
<StudentParent>
<ParentID>fab081b2-b618-460e-9f2c-610fd6d9e7cf</ParentID>
<StudentID>a84ff574-bd42-4b18-9078-edbbf6047499</StudentID>
</StudentParent>
</ArrayOfStudentParent>