GET GetProgrammeBatches?InstId={InstId}&CourseId={CourseId}&PageNo={PageNo}&PageSize={PageSize}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| InstId | integer |
Required |
|
| CourseId | integer |
Required |
|
| PageNo | integer |
Required |
|
| PageSize | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
LMSProgrammeBatches| Name | Description | Type | Additional information |
|---|---|---|---|
| pageNumber | integer |
None. |
|
| pageSize | integer |
None. |
|
| totalNumberOfPages | integer |
None. |
|
| totalNumberOfRecords | integer |
None. |
|
| results | Collection of ProgrammeBatchesInfoDTO |
None. |
Response Formats
application/json, text/json
Sample:
{
"pageNumber": 1,
"pageSize": 2,
"totalNumberOfPages": 3,
"totalNumberOfRecords": 4,
"results": [
{
"academic_Year_Id": 1,
"academic_Year_Name": "sample string 2",
"inst_Id": 3,
"map_Course_Id": 4,
"course_Id": 5,
"class_Id": 6,
"course_Name": "sample string 7",
"class_Name": "sample string 8",
"class_Index": 9,
"map_Co_Id": 10,
"batch_Id": 11,
"batch_Name": "sample string 12",
"map_Batch_Id": 13
},
{
"academic_Year_Id": 1,
"academic_Year_Name": "sample string 2",
"inst_Id": 3,
"map_Course_Id": 4,
"course_Id": 5,
"class_Id": 6,
"course_Name": "sample string 7",
"class_Name": "sample string 8",
"class_Index": 9,
"map_Co_Id": 10,
"batch_Id": 11,
"batch_Name": "sample string 12",
"map_Batch_Id": 13
}
]
}
application/xml, text/xml
Sample:
<LMSProgrammeBatches xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Somaiya.Models.DTO">
<pageNumber>1</pageNumber>
<pageSize>2</pageSize>
<results>
<ProgrammeBatchesInfoDTO>
<Academic_Year_Id>1</Academic_Year_Id>
<Academic_Year_Name>sample string 2</Academic_Year_Name>
<Batch_Id>11</Batch_Id>
<Batch_Name>sample string 12</Batch_Name>
<Class_Id>6</Class_Id>
<Class_Index>9</Class_Index>
<Class_Name>sample string 8</Class_Name>
<Course_Id>5</Course_Id>
<Course_Name>sample string 7</Course_Name>
<Inst_Id>3</Inst_Id>
<Map_Batch_Id>13</Map_Batch_Id>
<Map_Co_Id>10</Map_Co_Id>
<Map_Course_Id>4</Map_Course_Id>
</ProgrammeBatchesInfoDTO>
<ProgrammeBatchesInfoDTO>
<Academic_Year_Id>1</Academic_Year_Id>
<Academic_Year_Name>sample string 2</Academic_Year_Name>
<Batch_Id>11</Batch_Id>
<Batch_Name>sample string 12</Batch_Name>
<Class_Id>6</Class_Id>
<Class_Index>9</Class_Index>
<Class_Name>sample string 8</Class_Name>
<Course_Id>5</Course_Id>
<Course_Name>sample string 7</Course_Name>
<Inst_Id>3</Inst_Id>
<Map_Batch_Id>13</Map_Batch_Id>
<Map_Co_Id>10</Map_Co_Id>
<Map_Course_Id>4</Map_Course_Id>
</ProgrammeBatchesInfoDTO>
</results>
<totalNumberOfPages>3</totalNumberOfPages>
<totalNumberOfRecords>4</totalNumberOfRecords>
</LMSProgrammeBatches>