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": "2024-12-24T03:26:51.4990957+08:00", "MaxDateTime": "2024-12-24T03:26:51.4990957+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": "c62f48fa-8baa-4298-aba1-7f851a7a975b", "Time": "2024-12-24T03:26:51.5159133+08:00", "SiteId": "sample string 3", "OrderTag": "sample string 4", "ChannelName": "sample string 5", "Message": "sample string 6" }, { "ID": "c62f48fa-8baa-4298-aba1-7f851a7a975b", "Time": "2024-12-24T03:26:51.5159133+08:00", "SiteId": "sample string 3", "OrderTag": "sample string 4", "ChannelName": "sample string 5", "Message": "sample string 6" } ] }