POST api/DaKa/abnormalDakaList
Request Information
URI Parameters
None.
Body Parameters
abnormalDakaListPost| Name | Description | Type | Additional information |
|---|---|---|---|
| groupid | integer |
None. |
|
| begindt | string |
None. |
|
| enddt | string |
None. |
|
| skip |
跳过多少条 |
integer |
None. |
| limit |
取多少条 |
integer |
None. |
| tel |
登录账号 |
string |
None. |
| token |
token |
string |
None. |
| uid | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"groupid": 1,
"begindt": "sample string 1",
"enddt": "sample string 2",
"skip": 3,
"limit": 4,
"tel": "sample string 5",
"token": "sample string 6",
"uid": 1
}
application/xml, text/xml
Sample:
<abnormalDakaListPost xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.Controllers"> <tel xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">sample string 5</tel> <token xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">sample string 6</token> <uid xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">1</uid> <limit xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">4</limit> <skip xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">3</skip> <begindt>sample string 1</begindt> <enddt>sample string 2</enddt> <groupid>1</groupid> </abnormalDakaListPost>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
abnormalDakaListResult| Name | Description | Type | Additional information |
|---|---|---|---|
| list | 数组: abnormalDakaListItem |
None. |
|
| code |
状态码,200成功,300错误,400缺少参数,500没有权限,301数据不存在... |
integer |
None. |
| msg |
成功或者错误的说明,例如:登录成功,token过期... |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"list": [
{
"groupname": "sample string 1",
"username": "sample string 2",
"userid": 3,
"count": 4,
"day": 5,
"kuanggong": 6,
"yichang": 7
},
{
"groupname": "sample string 1",
"username": "sample string 2",
"userid": 3,
"count": 4,
"day": 5,
"kuanggong": 6,
"yichang": 7
}
],
"code": 1,
"msg": "sample string 2"
}
application/xml, text/xml
Sample:
<abnormalDakaListResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.Controllers">
<code xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">1</code>
<msg xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">sample string 2</msg>
<list>
<abnormalDakaListItem>
<count>4</count>
<day>5</day>
<groupname>sample string 1</groupname>
<kuanggong>6</kuanggong>
<userid>3</userid>
<username>sample string 2</username>
<yichang>7</yichang>
</abnormalDakaListItem>
<abnormalDakaListItem>
<count>4</count>
<day>5</day>
<groupname>sample string 1</groupname>
<kuanggong>6</kuanggong>
<userid>3</userid>
<username>sample string 2</username>
<yichang>7</yichang>
</abnormalDakaListItem>
</list>
</abnormalDakaListResult>