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": "2025-12-14T13:21:10.6314462+08:00",
"MaxDateTime": "2025-12-14T13:21:10.6314462+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": "d6bdd2fc-24b2-44ae-a1b9-66a8b7b11001",
"Time": "2025-12-14T13:21:10.6470642+08:00",
"SiteId": "sample string 3",
"OrderTag": "sample string 4",
"ChannelName": "sample string 5",
"Message": "sample string 6"
},
{
"ID": "d6bdd2fc-24b2-44ae-a1b9-66a8b7b11001",
"Time": "2025-12-14T13:21:10.6470642+08:00",
"SiteId": "sample string 3",
"OrderTag": "sample string 4",
"ChannelName": "sample string 5",
"Message": "sample string 6"
}
]
}