POST api/user/route/task/list

【用户】【研学路线】【研学任务】列表

Request Information

URI Parameters

None.

Body Parameters

AdminTypeIdRequst
NameDescriptionTypeAdditional information
routeId

string

None.

typeId

string

None.

notTypeId

string

None.

role

string

None.

type

类型

string

None.

beginDate

开始时间

string

None.

status

状态

string

None.

statusEx

string

None.

endDate

结束时间

string

None.

skip

当前页数

integer

None.

limit

一页显示几条数据

integer

None.

key

关键字

string

None.

order

排序字段

string

None.

desc

排序方式 可选:asc/desc

string

None.

Request Formats

application/json, text/json

Sample:
{
  "routeId": "sample string 1",
  "typeId": "sample string 2",
  "notTypeId": "sample string 3",
  "role": "sample string 4",
  "type": "sample string 5",
  "beginDate": "sample string 6",
  "status": "sample string 7",
  "statusEx": "sample string 8",
  "endDate": "sample string 9",
  "skip": 10,
  "limit": 11,
  "key": "sample string 12",
  "order": "sample string 13",
  "desc": "desc"
}

application/xml, text/xml

Sample:
<AdminTypeIdRequst xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Web.Api.Models.Request.Admin">
  <desc xmlns="http://schemas.datacontract.org/2004/07/Web.Api">desc</desc>
  <key xmlns="http://schemas.datacontract.org/2004/07/Web.Api">sample string 12</key>
  <limit xmlns="http://schemas.datacontract.org/2004/07/Web.Api">11</limit>
  <order xmlns="http://schemas.datacontract.org/2004/07/Web.Api">sample string 13</order>
  <skip xmlns="http://schemas.datacontract.org/2004/07/Web.Api">10</skip>
  <beginDate>sample string 6</beginDate>
  <endDate>sample string 9</endDate>
  <role>sample string 4</role>
  <status>sample string 7</status>
  <statusEx>sample string 8</statusEx>
  <type>sample string 5</type>
  <notTypeId>sample string 3</notTypeId>
  <routeId>sample string 1</routeId>
  <typeId>sample string 2</typeId>
</AdminTypeIdRequst>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'AdminTypeIdRequst'.

Response Information

Resource Description

【用户】【研学路线】【研学任务】列表

MyResponse
NameDescriptionTypeAdditional information
code

-1表示失败,0表示成功

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:
<MyResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tools">
  <code>1</code>
  <data />
  <msg>sample string 2</msg>
</MyResponse>