POST api/DaKa/abnormalDakaInfo
Request Information
URI Parameters
None.
Body Parameters
abnormalDakaInfoPost| Name | Description | Type | Additional information |
|---|---|---|---|
| userid | integer |
None. |
|
| begindt | string |
None. |
|
| enddt | string |
None. |
|
| tel |
登录账号 |
string |
None. |
| token |
token |
string |
None. |
| uid | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"userid": 1,
"begindt": "sample string 2",
"enddt": "sample string 3",
"tel": "sample string 4",
"token": "sample string 5",
"uid": 1
}
application/xml, text/xml
Sample:
<abnormalDakaInfoPost 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 4</tel> <token xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">sample string 5</token> <uid xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">1</uid> <begindt>sample string 2</begindt> <enddt>sample string 3</enddt> <userid>1</userid> </abnormalDakaInfoPost>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
abnormalDakaInfoResult| Name | Description | Type | Additional information |
|---|---|---|---|
| list | 数组: abnormalDakaInfoItem |
None. |
|
| allcount | integer |
None. |
|
| code |
状态码,200成功,300错误,400缺少参数,500没有权限,301数据不存在... |
integer |
None. |
| msg |
成功或者错误的说明,例如:登录成功,token过期... |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"list": [
{
"dt": "sample string 1",
"name": "sample string 2",
"type": 3,
"remarks": "sample string 4",
"hongbaourl": "sample string 5",
"status": 1
},
{
"dt": "sample string 1",
"name": "sample string 2",
"type": 3,
"remarks": "sample string 4",
"hongbaourl": "sample string 5",
"status": 1
}
],
"allcount": 1,
"code": 2,
"msg": "sample string 3"
}
application/xml, text/xml
Sample:
<abnormalDakaInfoResult 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">2</code>
<msg xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">sample string 3</msg>
<allcount>1</allcount>
<list>
<abnormalDakaInfoItem>
<dt>sample string 1</dt>
<hongbaourl>sample string 5</hongbaourl>
<name>sample string 2</name>
<remarks>sample string 4</remarks>
<status>zhengchang</status>
<type>3</type>
</abnormalDakaInfoItem>
<abnormalDakaInfoItem>
<dt>sample string 1</dt>
<hongbaourl>sample string 5</hongbaourl>
<name>sample string 2</name>
<remarks>sample string 4</remarks>
<status>zhengchang</status>
<type>3</type>
</abnormalDakaInfoItem>
</list>
</abnormalDakaInfoResult>