GET api/StudentsApi/GetChildListInfo?ParentId={ParentId}&StudentId={StudentId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ParentId | string |
Required |
|
| StudentId | decimal number |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of StudentInfoList| Name | Description | Type | Additional information |
|---|---|---|---|
| BrId | decimal number |
None. |
|
| BranchName | string |
None. |
|
| StudnetNo | string |
None. |
|
| StudentName | string |
None. |
|
| Class | string |
None. |
|
| FeeId | decimal number |
None. |
|
| Fee | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"BrId": 1.0,
"BranchName": "sample string 2",
"StudnetNo": "sample string 3",
"StudentName": "sample string 4",
"Class": "sample string 5",
"FeeId": 6.0,
"Fee": 7.1
},
{
"BrId": 1.0,
"BranchName": "sample string 2",
"StudnetNo": "sample string 3",
"StudentName": "sample string 4",
"Class": "sample string 5",
"FeeId": 6.0,
"Fee": 7.1
}
]
application/xml, text/xml
Sample:
<ArrayOfStudentInfoList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataModels">
<StudentInfoList>
<BrId>1</BrId>
<BranchName>sample string 2</BranchName>
<Class>sample string 5</Class>
<Fee>7.1</Fee>
<FeeId>6</FeeId>
<StudentName>sample string 4</StudentName>
<StudnetNo>sample string 3</StudnetNo>
</StudentInfoList>
<StudentInfoList>
<BrId>1</BrId>
<BranchName>sample string 2</BranchName>
<Class>sample string 5</Class>
<Fee>7.1</Fee>
<FeeId>6</FeeId>
<StudentName>sample string 4</StudentName>
<StudnetNo>sample string 3</StudnetNo>
</StudentInfoList>
</ArrayOfStudentInfoList>