POST api/BMS/GetSemester?standardid={standardid}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
standardid

integer

Required

Body Parameters

None.

Response Information

Resource Description

clsSemester
NameDescriptionTypeAdditional information
Semester

Collection of BMS_Semester

None.

Message

string

None.

ResponseCode

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Semester": [
    {
      "SemesterId": 1,
      "SemesterName": "sample string 2"
    },
    {
      "SemesterId": 1,
      "SemesterName": "sample string 2"
    }
  ],
  "Message": "sample string 1",
  "ResponseCode": 2
}

application/xml, text/xml

Sample:
<clsSemester xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LiveTextBooksModel.Entity">
  <Message>sample string 1</Message>
  <ResponseCode>2</ResponseCode>
  <Semester>
    <BMS_Semester>
      <SemesterId>1</SemesterId>
      <SemesterName>sample string 2</SemesterName>
    </BMS_Semester>
    <BMS_Semester>
      <SemesterId>1</SemesterId>
      <SemesterName>sample string 2</SemesterName>
    </BMS_Semester>
  </Semester>
</clsSemester>