简要描述

  • 调用接口修改订单

接口版本

版本号 制定人 制定日期 修订日期
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 服务门店

返回示例:

正确时返回一:

  1. {
  2. "code": 200,
  3. "msg": "订单数据更新成功!",
  4. "data": {
  5. "status": "success",
  6. "content": "家政员姓名由“张四妹”改成“李阿姨”;",
  7. "time": 1559362943
  8. }
  9. }

说明:当返回此结果时说明订单修改成功,time为订单更新时间戳。

错误返回一:

  1. {
  2. "code": 400,
  3. "msg": "数据无变化,无需更新!",
  4. "data": []
  5. }

说明:当返回此结果时说明原订单信息与提交信息一致。