POST api/SDCtripDay?timeSpan={timeSpan}&sign={sign}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
timeSpan

string

Required

sign

string

Required

Body Parameters

None.

Response Information

Resource Description

EstimatePriceResponse
NameDescriptionTypeAdditional information
code

string

None.

message

string

None.

vehicleEstimatePriceList

Collection of VehicleEstimatePrice

None.

Response Formats

application/json, text/json

Sample:
{
  "code": "sample string 1",
  "message": "sample string 2",
  "vehicleEstimatePriceList": [
    {
      "packageCode": "sample string 1",
      "vendorVehicleType": "sample string 2",
      "price": 3.0,
      "priceMark": "sample string 4",
      "addServiceList": [
        {
          "type": "sample string 1",
          "serviceCode": "sample string 2"
        },
        {
          "type": "sample string 1",
          "serviceCode": "sample string 2"
        }
      ]
    },
    {
      "packageCode": "sample string 1",
      "vendorVehicleType": "sample string 2",
      "price": 3.0,
      "priceMark": "sample string 4",
      "addServiceList": [
        {
          "type": "sample string 1",
          "serviceCode": "sample string 2"
        },
        {
          "type": "sample string 1",
          "serviceCode": "sample string 2"
        }
      ]
    }
  ]
}

application/xml, text/xml

Sample:
<EstimatePriceResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/_5Bus.WebProvider.APIDTO.CtripDay">
  <code>sample string 1</code>
  <message>sample string 2</message>
  <vehicleEstimatePriceList>
    <VehicleEstimatePrice>
      <addServiceList>
        <VehicleAddServiceDTO>
          <serviceCode>sample string 2</serviceCode>
          <type>sample string 1</type>
        </VehicleAddServiceDTO>
        <VehicleAddServiceDTO>
          <serviceCode>sample string 2</serviceCode>
          <type>sample string 1</type>
        </VehicleAddServiceDTO>
      </addServiceList>
      <packageCode>sample string 1</packageCode>
      <price>3</price>
      <priceMark>sample string 4</priceMark>
      <vendorVehicleType>sample string 2</vendorVehicleType>
    </VehicleEstimatePrice>
    <VehicleEstimatePrice>
      <addServiceList>
        <VehicleAddServiceDTO>
          <serviceCode>sample string 2</serviceCode>
          <type>sample string 1</type>
        </VehicleAddServiceDTO>
        <VehicleAddServiceDTO>
          <serviceCode>sample string 2</serviceCode>
          <type>sample string 1</type>
        </VehicleAddServiceDTO>
      </addServiceList>
      <packageCode>sample string 1</packageCode>
      <price>3</price>
      <priceMark>sample string 4</priceMark>
      <vendorVehicleType>sample string 2</vendorVehicleType>
    </VehicleEstimatePrice>
  </vehicleEstimatePriceList>
</EstimatePriceResponse>