GET getInstitutes?InstId={InstId}&PageNo={PageNo}&PageSize={PageSize}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| InstId | integer |
Required |
|
| PageNo | integer |
Required |
|
| PageSize | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
LMSInstitutes| Name | Description | Type | Additional information |
|---|---|---|---|
| pageNumber | integer |
None. |
|
| pageSize | integer |
None. |
|
| totalNumberOfPages | integer |
None. |
|
| totalNumberOfRecords | integer |
None. |
|
| results | Collection of InstituesInfoDTO |
None. |
Response Formats
application/json, text/json
Sample:
{
"pageNumber": 1,
"pageSize": 2,
"totalNumberOfPages": 3,
"totalNumberOfRecords": 4,
"results": [
{
"row_Number": 1,
"altered_Count": 2,
"total_Count": 3,
"inst_Id": 4,
"inst_Name": "sample string 5",
"inst_Shortname": "sample string 6",
"comes_Under_Inst_Id": 1,
"address": "sample string 7",
"lmS_Flag": "sample string 8",
"inst_Logo_S3_Path_Svg": "sample string 9",
"status": "sample string 10"
},
{
"row_Number": 1,
"altered_Count": 2,
"total_Count": 3,
"inst_Id": 4,
"inst_Name": "sample string 5",
"inst_Shortname": "sample string 6",
"comes_Under_Inst_Id": 1,
"address": "sample string 7",
"lmS_Flag": "sample string 8",
"inst_Logo_S3_Path_Svg": "sample string 9",
"status": "sample string 10"
}
]
}
application/xml, text/xml
Sample:
<LMSInstitutes 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>
<InstituesInfoDTO>
<Address>sample string 7</Address>
<Altered_Count>2</Altered_Count>
<Comes_Under_Inst_Id>1</Comes_Under_Inst_Id>
<Inst_Id>4</Inst_Id>
<Inst_Logo_S3_Path_Svg>sample string 9</Inst_Logo_S3_Path_Svg>
<Inst_Name>sample string 5</Inst_Name>
<Inst_Shortname>sample string 6</Inst_Shortname>
<LMS_Flag>sample string 8</LMS_Flag>
<Row_Number>1</Row_Number>
<Status>sample string 10</Status>
<Total_Count>3</Total_Count>
</InstituesInfoDTO>
<InstituesInfoDTO>
<Address>sample string 7</Address>
<Altered_Count>2</Altered_Count>
<Comes_Under_Inst_Id>1</Comes_Under_Inst_Id>
<Inst_Id>4</Inst_Id>
<Inst_Logo_S3_Path_Svg>sample string 9</Inst_Logo_S3_Path_Svg>
<Inst_Name>sample string 5</Inst_Name>
<Inst_Shortname>sample string 6</Inst_Shortname>
<LMS_Flag>sample string 8</LMS_Flag>
<Row_Number>1</Row_Number>
<Status>sample string 10</Status>
<Total_Count>3</Total_Count>
</InstituesInfoDTO>
</results>
<totalNumberOfPages>3</totalNumberOfPages>
<totalNumberOfRecords>4</totalNumberOfRecords>
</LMSInstitutes>