简要描述
- 调用接口修改订单
接口版本
版本号 | 制定人 | 制定日期 | 修订日期 |
---|---|---|---|
V 1.0 | xxxx-xx-xx |
请求URL:
请求方式:
- PUT
请求头:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
Content-Type | 是 | string | 请求类型: multipart/form-data |
请求参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
access_token | 是 | string | 获取到的授权码access_token |
customer_name | 是 | string | 客户(雇主)称呼 |
customer_phone | 是 | string | 客户(雇主)联系电话 |
customer_id_card | 是 | string | 客户(雇主)身份证号码 |
employee_name | 是 | string | 服务人员姓名 |
employee_id_card | 是 | string | 服务人员身份证号码 |
self_numbering | 是 | string | 订单自编号 |
order_amount | 是 | string | 订单成交金额 |
order_status | 是 | string | 订单状态:1-意向、2-成单、3-完成、4-作废、5-续约 |
service_ltems | 是 | string | 服务项目(如:保洁清洗、住家保姆) |
service_times | 是 | string | 服务次数 |
service_content | 是 | string | 服务内容描述 |
service_store | 是 | string | 服务门店 |
返回示例:
正确时返回一:
{
"code": 200,
"msg": "订单数据更新成功!",
"data": {
"status": "success",
"content": "家政员姓名由“张四妹”改成“李阿姨”;",
"time": 1559362943
}
}
说明:当返回此结果时说明订单修改成功,time为订单更新时间戳。
错误返回一:
{
"code": 400,
"msg": "数据无变化,无需更新!",
"data": []
}
说明:当返回此结果时说明原订单信息与提交信息一致。