POST Api/Service/GetChannelNotices/{PageNumber}/{PageSize}
通知日志记录检索
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| PageNumber |
页索引 |
integer |
Required |
| PageSize |
页大小 |
integer |
Required |
Body Parameters
检索模型
SpeedPower.Utility.Models.Service.MILogs.SearchChannelNoticeModel| Name | Description | Type | Additional information |
|---|---|---|---|
| SiteIds |
站点ID |
Collection of string |
Required |
| OrderTag |
订单标识 |
string |
String length: inclusive between 0 and 128 |
| ChannelName |
渠道名称 |
string |
String length: inclusive between 0 and 20 |
| MinDateTime |
最小查询时间 |
date |
None. |
| MaxDateTime |
最大查询时间 |
date |
None. |
Request Formats
application/json, text/json
Sample:
{
"SiteIds": [
"sample string 1",
"sample string 2"
],
"OrderTag": "sample string 1",
"ChannelName": "sample string 2",
"MinDateTime": "2026-02-04T08:52:44.9452969+08:00",
"MaxDateTime": "2026-02-04T08:52:44.9452969+08:00"
}
Response Information
Resource Description
通知日志记录检索
SpeedPower.Utility.Models.Helper.ResultDataGridOfSystem.Collections.Generic.IEnumerableOfSpeedPower.Utility.Models.Service.MILogs.GetChannelNoticeModel| Name | Description | Type | Additional information |
|---|---|---|---|
| RowsCount | integer |
None. |
|
| Contents | Collection of SpeedPower.Utility.Models.Service.MILogs.GetChannelNoticeModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"RowsCount": 1,
"Contents": [
{
"ID": "21c66ece-e7e6-4d82-94fe-158f2c0db3f2",
"Time": "2026-02-04T08:52:44.9648272+08:00",
"SiteId": "sample string 3",
"OrderTag": "sample string 4",
"ChannelName": "sample string 5",
"Message": "sample string 6"
},
{
"ID": "21c66ece-e7e6-4d82-94fe-158f2c0db3f2",
"Time": "2026-02-04T08:52:44.9648272+08:00",
"SiteId": "sample string 3",
"OrderTag": "sample string 4",
"ChannelName": "sample string 5",
"Message": "sample string 6"
}
]
}