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.SearchChannelNoticeModelName | 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-04-03T16:44:05.784895+08:00", "MaxDateTime": "2025-04-03T16:44:05.784895+08:00" }
Response Information
Resource Description
通知日志记录检索
SpeedPower.Utility.Models.Helper.ResultDataGridOfSystem.Collections.Generic.IEnumerableOfSpeedPower.Utility.Models.Service.MILogs.GetChannelNoticeModelName | 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": "b3ef238d-7493-4061-abf1-d116eae6bbac", "Time": "2025-04-03T16:44:05.784895+08:00", "SiteId": "sample string 3", "OrderTag": "sample string 4", "ChannelName": "sample string 5", "Message": "sample string 6" }, { "ID": "b3ef238d-7493-4061-abf1-d116eae6bbac", "Time": "2025-04-03T16:44:05.784895+08:00", "SiteId": "sample string 3", "OrderTag": "sample string 4", "ChannelName": "sample string 5", "Message": "sample string 6" } ] }