GET GetMessageList?aid={aid}&shopId={shopId}
消息列表
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| aid |
用户ID |
string |
Required |
| shopId |
商城ID |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of MessageInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
消息ID |
string |
None. |
| Title |
消息标题 |
string |
None. |
| Content |
消息内容 |
string |
None. |
| WaybillNumber |
运单号 |
string |
None. |
| Img |
消息图片 |
string |
None. |
| IsRead |
是否已阅 |
boolean |
None. |
| Type |
类型 |
integer |
None. |
| CreateTime |
创建时间 |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": "sample string 1",
"Title": "sample string 2",
"Content": "sample string 3",
"WaybillNumber": "sample string 4",
"Img": "sample string 5",
"IsRead": true,
"Type": 7,
"CreateTime": "sample string 8"
},
{
"ID": "sample string 1",
"Title": "sample string 2",
"Content": "sample string 3",
"WaybillNumber": "sample string 4",
"Img": "sample string 5",
"IsRead": true,
"Type": 7,
"CreateTime": "sample string 8"
}
]
application/xml, text/xml
Sample:
<ArrayOfMessageInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/open.wst.com.Areas.OnlineEducation.Models">
<MessageInfo>
<Content>sample string 3</Content>
<CreateTime>sample string 8</CreateTime>
<ID>sample string 1</ID>
<Img>sample string 5</Img>
<IsRead>true</IsRead>
<Title>sample string 2</Title>
<Type>7</Type>
<WaybillNumber>sample string 4</WaybillNumber>
</MessageInfo>
<MessageInfo>
<Content>sample string 3</Content>
<CreateTime>sample string 8</CreateTime>
<ID>sample string 1</ID>
<Img>sample string 5</Img>
<IsRead>true</IsRead>
<Title>sample string 2</Title>
<Type>7</Type>
<WaybillNumber>sample string 4</WaybillNumber>
</MessageInfo>
</ArrayOfMessageInfo>