POST Api/Service/GetChannelVerifyLogs/{PageNumber}/{PageSize}
校验日志记录检索
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
PageNumber |
页索引 |
integer |
Required |
PageSize |
页大小 |
integer |
Required |
Body Parameters
检索模型
SpeedPower.Utility.Models.Service.MILogs.SearchChannelVerifyLogModelName | Description | Type | Additional information |
---|---|---|---|
SiteIds |
站点ID |
Collection of string |
Required |
OrderTag |
订单标签 |
string |
String length: inclusive between 0 and 128 |
NodeType |
校验结点 |
SpeedPower.Utility.Models.Service.MILogs.Enums.VerifyNodeType |
None. |
Carrier |
航空公司 |
string |
String length: inclusive between 0 and 2 |
Status |
校验状态 |
boolean |
None. |
MinDateTime |
最小查询时间 |
date |
None. |
MaxDateTime |
最大查询时间 |
date |
None. |
Request Formats
application/json, text/json
Sample:
{ "SiteIds": [ "sample string 1", "sample string 2" ], "OrderTag": "sample string 1", "NodeType": 0, "Carrier": "sample string 2", "Status": true, "MinDateTime": "2024-12-24T02:53:24.9783312+08:00", "MaxDateTime": "2024-12-24T02:53:24.9783312+08:00" }
Response Information
Resource Description
校验日志记录检索
SpeedPower.Utility.Models.Helper.ResultDataGridOfSystem.Collections.Generic.IEnumerableOfSpeedPower.Utility.Models.Service.MILogs.GetChannelVerifyLogModelName | Description | Type | Additional information |
---|---|---|---|
RowsCount | integer |
None. |
|
Contents | Collection of SpeedPower.Utility.Models.Service.MILogs.GetChannelVerifyLogModel |
None. |
Response Formats
application/json, text/json
Sample:
{ "RowsCount": 1, "Contents": [ { "ID": "c79f6972-78b5-4a7f-b3d8-cd22db1adac4", "Time": "2024-12-24T02:53:25.0096402+08:00", "SiteId": "sample string 3", "NodeType": 0, "OrderTag": "sample string 4", "Carrier": "sample string 5", "Status": true, "Request": "sample string 7", "Response": "sample string 8", "Message": "sample string 9" }, { "ID": "c79f6972-78b5-4a7f-b3d8-cd22db1adac4", "Time": "2024-12-24T02:53:25.0096402+08:00", "SiteId": "sample string 3", "NodeType": 0, "OrderTag": "sample string 4", "Carrier": "sample string 5", "Status": true, "Request": "sample string 7", "Response": "sample string 8", "Message": "sample string 9" } ] }