POST Api/Service/GetChannelVerifyLogs/{PageNumber}/{PageSize}

校验日志记录检索

Request Information

URI Parameters

NameDescriptionTypeAdditional information
PageNumber

页索引

integer

Required

PageSize

页大小

integer

Required

Body Parameters

检索模型

SpeedPower.Utility.Models.Service.MILogs.SearchChannelVerifyLogModel
NameDescriptionTypeAdditional 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-10-22T16:26:21.4351964+08:00",
  "MaxDateTime": "2024-10-22T16:26:21.4351964+08:00"
}

Response Information

Resource Description

校验日志记录检索

SpeedPower.Utility.Models.Helper.ResultDataGridOfSystem.Collections.Generic.IEnumerableOfSpeedPower.Utility.Models.Service.MILogs.GetChannelVerifyLogModel
NameDescriptionTypeAdditional 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": "9409de32-a45b-41fa-9695-2af5794c6a32",
      "Time": "2024-10-22T16:26:21.4351964+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": "9409de32-a45b-41fa-9695-2af5794c6a32",
      "Time": "2024-10-22T16:26:21.4351964+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"
    }
  ]
}