GET api/EnGetBulkData?schoolId={schoolId}&StandardId={StandardId}&DivisionId={DivisionId}&YearId={YearId}&HeaderId={HeaderId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| schoolId | integer |
Required |
|
| StandardId | integer |
Required |
|
| DivisionId | integer |
Required |
|
| YearId | integer |
Required |
|
| HeaderId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of BulkUpdate| Name | Description | Type | Additional information |
|---|---|---|---|
| StudentID | integer |
None. |
|
| RollNo | integer |
None. |
|
| Registrationno | integer |
None. |
|
| StudentName | string |
None. |
|
| HeaderId | integer |
None. |
|
| ShowType | string |
None. |
|
| Value1 | string |
None. |
|
| Value2 | integer |
None. |
|
| Value3 | integer |
None. |
Response Formats
application/json, text/json, text/html
Sample:
[
{
"studentID": 1,
"rollNo": 2,
"registrationno": 3,
"studentName": "sample string 4",
"headerId": 5,
"showType": "sample string 6",
"value1": "sample string 7",
"value2": 8,
"value3": 9
},
{
"studentID": 1,
"rollNo": 2,
"registrationno": 3,
"studentName": "sample string 4",
"headerId": 5,
"showType": "sample string 6",
"value1": "sample string 7",
"value2": 8,
"value3": 9
}
]
application/xml, text/xml
Sample:
<ArrayOfBulkUpdate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Web_Api.Controllers">
<BulkUpdate>
<HeaderId>5</HeaderId>
<Registrationno>3</Registrationno>
<RollNo>2</RollNo>
<ShowType>sample string 6</ShowType>
<StudentID>1</StudentID>
<StudentName>sample string 4</StudentName>
<Value1>sample string 7</Value1>
<Value2>8</Value2>
<Value3>9</Value3>
</BulkUpdate>
<BulkUpdate>
<HeaderId>5</HeaderId>
<Registrationno>3</Registrationno>
<RollNo>2</RollNo>
<ShowType>sample string 6</ShowType>
<StudentID>1</StudentID>
<StudentName>sample string 4</StudentName>
<Value1>sample string 7</Value1>
<Value2>8</Value2>
<Value3>9</Value3>
</BulkUpdate>
</ArrayOfBulkUpdate>