POST api/RetestRepository/BatchDelete
题库批量删除试题
Request Information
URI Parameters
None.
Body Parameters
ReTestDeleteInputName | Description | Type | Additional information |
---|---|---|---|
RtrId |
题库编号 |
integer |
None. |
RetestIds |
试题编号 |
Collection of globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "RtrId": 1, "RetestIds": [ "9f78186e-fc47-4061-9728-28edd459b207", "8b080954-6999-4751-a4c5-beea15db6638" ] }
text/html
Sample:
{"RtrId":1,"RetestIds":["9f78186e-fc47-4061-9728-28edd459b207","8b080954-6999-4751-a4c5-beea15db6638"]}
application/xml, text/xml
Sample:
<ReTestDeleteInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services"> <RetestIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:guid>9f78186e-fc47-4061-9728-28edd459b207</d2p1:guid> <d2p1:guid>8b080954-6999-4751-a4c5-beea15db6638</d2p1:guid> </RetestIds> <RtrId>1</RtrId> </ReTestDeleteInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
题库批量删除试题
JsonRtnDtoOfBooleanName | Description | Type | Additional information |
---|---|---|---|
Msg | string |
None. |
|
State | RtnState |
None. |
|
Data | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "Msg": "sample string 1", "State": 100, "Data": true }
text/html
Sample:
{"Msg":"sample string 1","State":100,"Data":true}
application/xml, text/xml
Sample:
<JsonRtnDtoOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services"> <Data>true</Data> <Msg>sample string 1</Msg> <State>Display</State> </JsonRtnDtoOfboolean>
text/javascript, application/javascript, application/json-p
Sample:
/**/ typeof === 'function' && ({"Msg":"sample string 1","State":100,"Data":true});