GET api/homework/updateexaminationprocesstime?paperId={paperId}&batchId={batchId}&token={token}&second={second}
更新作业时间
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
paperId |
作业编号 |
globally unique identifier |
Required |
batchId |
作业批次编号 |
globally unique identifier |
Required |
token |
token 开始考试时调用接口“api/testpaper/exambegin”取得 |
globally unique identifier |
Required |
second |
该接口调用的频率(秒/次)不能小于10秒每次,建议20-30秒/次 |
integer |
Default value is 30 |
Body Parameters
None.
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});