POST Task/Search

查询我的任务列表

Request Information

URI Parameters

None.

Body Parameters

明文参数示例: { "AppID": 应用ID, "UserID": 用户ID, "Type": 任务类别 0-全部任务 1-未完成任务 2-已完成任务, "CurrentPage": 当前查询的页码, "PageSize": 每页返回的记录数, "Sign": "方法签名(MD5)", "TimeStamp": "时间戳(UNIX格式)" }

string

Request Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

SelectTaskResult
NameDescriptionTypeAdditional information
TotalRecord1

未完成任务总数据量

integer

None.

TotalRecord2

已完成任务总数据量

integer

None.

TotalRecord3

我发起未处理总数据量

integer

None.

ResultCode

返回代码 200为成功,其余为失败,原因参考 ResultMsg

string

None.

ResultMsg

返回信息

string

None.

ReturnValue

返回数据

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "TotalRecord1": 1,
  "TotalRecord2": 2,
  "TotalRecord3": 3,
  "ResultCode": "sample string 4",
  "ResultMsg": "sample string 5",
  "ReturnValue": {}
}

application/xml, text/xml

Sample:
<SelectTaskResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MKY.Business.V2.WebApis.Models">
  <ResultCode>sample string 4</ResultCode>
  <ResultMsg>sample string 5</ResultMsg>
  <ReturnValue />
  <TotalRecord1>1</TotalRecord1>
  <TotalRecord2>2</TotalRecord2>
  <TotalRecord3>3</TotalRecord3>
</SelectTaskResult>