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.SearchChannelVerifyLogModel| Name | 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": "2025-11-07T07:18:36.6658095+08:00",
"MaxDateTime": "2025-11-07T07:18:36.6658095+08:00"
}
Response Information
Resource Description
校验日志记录检索
SpeedPower.Utility.Models.Helper.ResultDataGridOfSystem.Collections.Generic.IEnumerableOfSpeedPower.Utility.Models.Service.MILogs.GetChannelVerifyLogModel| Name | 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": "ee0a6f12-8218-431c-8e3e-5a5314f2eea3",
"Time": "2025-11-07T07:18:36.6814336+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": "ee0a6f12-8218-431c-8e3e-5a5314f2eea3",
"Time": "2025-11-07T07:18:36.6814336+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"
}
]
}