POST api/BMS/GetStandard?mediumid={mediumid}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| mediumid | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
clsStandard| Name | Description | Type | Additional information |
|---|---|---|---|
| Standard | Collection of BMS_Standard |
None. |
|
| Message | string |
None. |
|
| ResponseCode | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Standard": [
{
"StandardId": 1,
"StandardName": "sample string 2"
},
{
"StandardId": 1,
"StandardName": "sample string 2"
}
],
"Message": "sample string 1",
"ResponseCode": 2
}
application/xml, text/xml
Sample:
<clsStandard 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>
<Standard>
<BMS_Standard>
<StandardId>1</StandardId>
<StandardName>sample string 2</StandardName>
</BMS_Standard>
<BMS_Standard>
<StandardId>1</StandardId>
<StandardName>sample string 2</StandardName>
</BMS_Standard>
</Standard>
</clsStandard>