POST api/OutsideAuction/ReportDealInfoGetList

获取检测报告成交和支付时间 2024-10-24 柳航

Request Information

Parameters

NameTypeDescription
request Carwins.UsedCar.CarDomain.ReportDealInfoGetListRequest
No documentation available.

Request body formats

application/json, text/json

Sample:
{
  "param": {
    "reportVehicleIDList": [
      "sample string 1",
      "sample string 2",
      "sample string 3"
    ]
  },
  "version": 1.0,
  "institutionID": 2,
  "sessionId": "sample string 3",
  "requestSource": "sample string 4",
  "bundleID": "sample string 5",
  "requestGroupID": "sample string 6",
  "channel": "sample string 7",
  "loginUserID": "sample string 8",
  "clientIP": "sample string 9",
  "endDeviceNumber": "sample string 10",
  "cityName": "sample string 11"
}

application/xml, text/xml

Sample:
<ReportDealInfoGetListRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Carwins.UsedCar.CarDomain">
  <BundleID xmlns="http://schemas.datacontract.org/2004/07/Pilot.Web.WebApi">sample string 5</BundleID>
  <Channel xmlns="http://schemas.datacontract.org/2004/07/Pilot.Web.WebApi">sample string 7</Channel>
  <CityName xmlns="http://schemas.datacontract.org/2004/07/Pilot.Web.WebApi">sample string 11</CityName>
  <ClientIP xmlns="http://schemas.datacontract.org/2004/07/Pilot.Web.WebApi">sample string 9</ClientIP>
  <EndDeviceNumber xmlns="http://schemas.datacontract.org/2004/07/Pilot.Web.WebApi">sample string 10</EndDeviceNumber>
  <InstitutionID xmlns="http://schemas.datacontract.org/2004/07/Pilot.Web.WebApi">2</InstitutionID>
  <LoginUserID xmlns="http://schemas.datacontract.org/2004/07/Pilot.Web.WebApi">sample string 8</LoginUserID>
  <RequestGroupID xmlns="http://schemas.datacontract.org/2004/07/Pilot.Web.WebApi">sample string 6</RequestGroupID>
  <RequestSource xmlns="http://schemas.datacontract.org/2004/07/Pilot.Web.WebApi">sample string 4</RequestSource>
  <SessionId xmlns="http://schemas.datacontract.org/2004/07/Pilot.Web.WebApi">sample string 3</SessionId>
  <Version xmlns="http://schemas.datacontract.org/2004/07/Pilot.Web.WebApi">1</Version>
  <Param>
    <ReportVehicleIDList xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:string>sample string 1</d3p1:string>
      <d3p1:string>sample string 2</d3p1:string>
      <d3p1:string>sample string 3</d3p1:string>
    </ReportVehicleIDList>
  </Param>
</ReportDealInfoGetListRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ReportDealInfoGetListRequest'.

Response Type

Pilot.Web.WebApi.SingleApiResponse`1[[System.Collections.Generic.List`1[[Carwins.UsedCar.CarDomain.ReportDealInfoGetListModel, Carwins.UsedCar.CarDomain, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]

Response Information

Response body formats

application/json, text/json

Sample:
{
  "data": [
    {
      "reportVehicleID": "sample string 1",
      "sucTime": "2025-06-01 11:54:20",
      "payTime": "2025-06-01 11:54:20"
    },
    {
      "reportVehicleID": "sample string 1",
      "sucTime": "2025-06-01 11:54:20",
      "payTime": "2025-06-01 11:54:20"
    },
    {
      "reportVehicleID": "sample string 1",
      "sucTime": "2025-06-01 11:54:20",
      "payTime": "2025-06-01 11:54:20"
    }
  ],
  "code": 1,
  "message": "sample string 2"
}

application/xml, text/xml

Sample:
<SingleApiResponseOfArrayOfReportDealInfoGetListModelBO9P5ujw xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pilot.Web.WebApi">
  <Code>1</Code>
  <Message>sample string 2</Message>
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/Carwins.UsedCar.CarDomain">
    <d2p1:ReportDealInfoGetListModel>
      <d2p1:PayTime>2025-06-01T11:54:20.8148029+08:00</d2p1:PayTime>
      <d2p1:ReportVehicleID>sample string 1</d2p1:ReportVehicleID>
      <d2p1:SucTime>2025-06-01T11:54:20.8148029+08:00</d2p1:SucTime>
    </d2p1:ReportDealInfoGetListModel>
    <d2p1:ReportDealInfoGetListModel>
      <d2p1:PayTime>2025-06-01T11:54:20.8148029+08:00</d2p1:PayTime>
      <d2p1:ReportVehicleID>sample string 1</d2p1:ReportVehicleID>
      <d2p1:SucTime>2025-06-01T11:54:20.8148029+08:00</d2p1:SucTime>
    </d2p1:ReportDealInfoGetListModel>
    <d2p1:ReportDealInfoGetListModel>
      <d2p1:PayTime>2025-06-01T11:54:20.8148029+08:00</d2p1:PayTime>
      <d2p1:ReportVehicleID>sample string 1</d2p1:ReportVehicleID>
      <d2p1:SucTime>2025-06-01T11:54:20.8148029+08:00</d2p1:SucTime>
    </d2p1:ReportDealInfoGetListModel>
  </Data>
</SingleApiResponseOfArrayOfReportDealInfoGetListModelBO9P5ujw>