POST api/ExaminationManage/DelQuestion
Request Information
URI Parameters
None.
Body Parameters
idDto| Name | Description | Type | Additional information | 
|---|---|---|---|
| id | integer | None. | 
Request Formats
application/json, text/json
            Sample:
        
{
  "id": 1
}
        application/xml, text/xml
            Sample:
        <idDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LearnAPI.ViewModel"> <id>1</id> </idDto>
application/x-www-form-urlencoded
            Sample:
    
Sample not available.
Response Information
Resource Description
BaseResponseOfInt32| Name | Description | Type | Additional information | 
|---|---|---|---|
| data | integer | None. | |
| msg | string | None. | |
| code | integer | None. | |
| total | integer | None. | 
Response Formats
application/json, text/json
            Sample:
        
{
  "data": 1,
  "msg": "sample string 2",
  "code": 3,
  "total": 4
}
        application/xml, text/xml
            Sample:
<BaseResponseOfint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LearnAPI"> <code>3</code> <msg>sample string 2</msg> <total>4</total> <data>1</data> </BaseResponseOfint>