简要描述
- 调用接口添加订单评价
接口版本
版本号 | 制定人 | 制定日期 | 修订日期 |
---|---|---|---|
V 1.0 | xxxx-xx-xx |
请求URL:
请求方式:
- POST
请求头:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
Content-Type | 是 | string | 请求类型: multipart/form-data |
请求参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
access_token | 是 | string | 获取到的授权码access_token |
unified_social_credit_code | 是 | string | 本公司社会统一信用代码 |
self_numbering | 是 | string | 订单自编号,请保证在自有系统唯一 |
evaluation_result | 是 | string | 评价公司(评价结果:1-满意/2-基本满意/3-不满意) |
evaluation_content | 是 | string | 评价公司(评价内容) |
evaluation_time | 否 | string | 选填,留空为调接口系统时间 |
employee_evaluates[index][evaluation_time] | 是 | string | 选填,留空为调接口系统时间 |
employee_evaluates[index][employee_id_card] | 是 | string | 服务人员身份证号码 |
employee_evaluates[index][employee_result] | 是 | string | 评价家政员(评价结果:1-满意/2-基本满意/3-不满意) |
employee_evaluates[index][employee_content] | 是 | string | 评价家政员(评价内容) |
说明:当一个订单评价多个家政员时,使用employee_evaluates[index][字段名],如:
index:即为数组的下标
第一个家政员信息
employee_evaluates[0][evaluation_time]
employee_evaluates[0][employee_id_card]
employee_evaluates[0][employee_result]
employee_evaluates[0][employee_content]
第二个家政员信息
employee_evaluates[1][evaluation_time]
employee_evaluates[1][employee_id_card]
employee_evaluates[1][employee_result]
employee_evaluates[1][employee_content]
返回示例:
正确时返回一:
{
"code": 200,
"msg": "添加评价成功",
"data": {
"status": "success",
"time": 1560587820,
"耗时": 0.17399999999999999
}
}
说明:当返回此结果时说明订单评价添加成功,time为添加入库时间戳。
错误返回一:
{
"code": 400,
"msg": "此订单已评价,15天内可进行一次修改",
"data": []
}
说明:当返回此结果时说明订单评价已存在。