# 修改上车点

# 简介

本接口用于修改上车点,

# 服务提供方

享道

# 接口URL

/openapi/order/modifyPickupPoint

# 请求方式

POST

# 请求频次

单次

# 请求参数

参数名称 类型 必选 说明
timestamp long 请求时间,Unix Timestamp单位毫秒
oid string 合作方订单ID
order_id string 享道订单ID
slon double 新上车点经度
slat double 新上车点纬度
sname string 新上车点位置名称
estimate_id string 预估id

# 响应参数

参数名称 类型 是否必须 说明
errCode int 服务响应状态,参见附录5
errMsg string 服务响应状态说明,参见附录5

# 请求示例

请求

curl --location --request POST 'https://open-sit.saicmobility.com/merchant/v1/openapi/order/modifyDestination' \
--header 'X-Sign: aab078dd08a60c2a2e72bbbdfca3c9f94ab40e13' \
--header 'X-SignAlgorithm: 1' \
--header 'X-Timestamp: 20201021113700' \
--header 'X-MerchantId: open_app_OqPcV19dBV1KoBHs' \
--header 'Content-Type: application/json' \
--data-raw '{"timestamp":1603196471352,"oid":"Tess6k2qvpt5wqduk9zqhwlhwhi04k8llmdp","order_id":"U4b3x6n9w2faf6cbf75ab141cab93096f29a842f23","estimate_id":"d615e4e1-db29-4c4d-9083-d76043aa4472","slon":"121.556136","slat":"31.203579","sname":"龙阳路2000号龙阳广场"}'

响应

{
  "code": 10000,
  "message": "successful"
}