POST go/getTaskList

Request Information

URI Parameters

None.

Body Parameters

TaskSearchDto
NameDescriptionTypeAdditional information
taskStatus

integer

None.

CurrentPage

integer

None.

PageSize

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "taskStatus": 1,
  "CurrentPage": 2,
  "PageSize": 3
}

application/xml, text/xml

Sample:
<TaskSearchDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AP.AmazonCC.Models">
  <CurrentPage>2</CurrentPage>
  <PageSize>3</PageSize>
  <taskStatus>1</taskStatus>
</TaskSearchDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Result
NameDescriptionTypeAdditional information
code

integer

None.

msg

string

None.

data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "code": 1,
  "msg": "sample string 2",
  "data": {}
}

application/xml, text/xml

Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AP.AmazonCC.Models">
  <code>1</code>
  <data />
  <msg>sample string 2</msg>
</Result>