计价规则查询

查询曹操专车的计价规则

请求地址: /v2/common/queryMeterRule

服务协议: HTTP/GET

请求参数:

参数名称 类型 必选 说明
client_id string Y 申请时的client_id
timestamp long Y 时间戳
sign string Y 签名
car_type int Y 服务车型:2 新能源;3 舒适型;4 豪华型;5 商务型;7 优选
city_code string Y 城市编码
order_type Int Y 订单类型,请参照《1.5 订单状态及类型》
longitude Double N 经度
latitude Double N 纬度

响应data参数:

参数名 类型 必有 说明
carTypeCode int Y 服务车型code
carTypeDesc string Y 车型描述,例如“新能源”
startPrice.basePrice int Y 起步价格,单位分
startPrice.desc string Y 描述,起步价
startPrice.startIncludeKm double Y 起步公里数
startPrice.startIncludeMinute int Y 起步分钟数
kmPrice.basePrice int Y 基础里程价格,单位分
kmPrice.desc string Y 里程费描述
timePrice.basePrice int Y 时长费价格
timePrice.desc string Y 时长费描述
longWay.basePrice int Y 长途费价格
longWay.desc string Y 长途费描述
longWay.longWayStart int Y 长途计费起点,单位:km
nightFee.nightStart string Y 夜间起始时间 "HH:mm:ss
nightFee.nightEnd string Y 夜间终止时间 "HH:mm:ss"
nightFee.nightIncludeKm double Y 起步公里数
nightFee.nightStartPrice int Y 夜间起步费,单位分
nightFee.nightPrice int Y 夜间每公里价格,单位分
festivalFee.price int N 节日服务费
festivalFee.desc string N 节日服务费描述

结果示例:

{
  "code": 200,
  "success": true,
  "data": {
  "carTypeCode": "1",
  "carTypeDesc": "新能源",
  "startPrice": {
        "basePrice": 1000,
        "desc": "起步价",
        "startIncludeKm": 10.00,
        "startIncludeMinute": 10
         },
  "kmPrice": {
  "basePrice": 1000,
         "desc": "里程费/km"
         },
  "timePrice": {
         "basePrice": 1000,
         "desc": "时常费/分钟"
          },
  "longWay": {
         "basePrice": 1000,
         "desc": "长途费/km",
         "longWayStart": 10.00
          },
    "nightFee": {
         "desc": "夜间服务费",
         "nightStart": "22: 00: 00",
         "nightEnd": "05: 00: 00",
         "nightIncludeKm": 3.00,
         "nightStartPrice": 1000,
         "nightPrice": 100
          }
    }
}