GET api/vender/countlist
获取消息预览数量列表
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
ResponseOfVenderCountList| Name | Description | Type | Additional information |
|---|---|---|---|
| data | VenderCountList |
None. |
|
| errcode |
错误码,默认为成功:SUCCESS |
string |
None. |
| errmsg |
错误信息,默认为:成功 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"data": {
"StockingRequest": 1,
"Takeback": 2,
"Stocking": 3,
"Sealed": 4,
"Settlement": 5
},
"errcode": "sample string 1",
"errmsg": "sample string 2"
}
application/xml, text/xml
Sample:
<ResponseOfVenderCountListUJ8Augit xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Infrastructure.WebApi">
<errcode>sample string 1</errcode>
<errmsg>sample string 2</errmsg>
<data xmlns:d2p1="http://schemas.datacontract.org/2004/07/DataModel.Exchange.Response">
<d2p1:Sealed>4</d2p1:Sealed>
<d2p1:Settlement>5</d2p1:Settlement>
<d2p1:Stocking>3</d2p1:Stocking>
<d2p1:StockingRequest>1</d2p1:StockingRequest>
<d2p1:Takeback>2</d2p1:Takeback>
</data>
</ResponseOfVenderCountListUJ8Augit>