简要描述

  • 调用接口查看公司订单列表

接口版本

版本号 制定人 制定日期 修订日期
V 1.0 xxxx-xx-xx

请求URL:

请求方式:

  • GET

请求参数:

参数名 是否必须 类型 说明
access_token string 获取到的授权码access_token
unified_social_credit_code string 本公司社会统一信用代码
order_status order_status 订单状态过滤
num string 每页显示条数,留空默认每页10条,控制了每页最多可显示20条
page string 查询第几页数据,留空默认第1页,控制最多翻10页,建议补全关键字

返回示例:

正确时返回一:

  1. {
  2. "code": 200,
  3. "msg": "查询成功!",
  4. "data": {
  5. "orders": [
  6. {
  7. "self_numbering": "19",
  8. "customer_name": "贺先生",
  9. "customer_phone": "13800138000",
  10. "service_ltems": "钟点工",
  11. "order_status": "2",//订单状态:1-意向、2-成交、3-完成、4-作废、5-续约
  12. "service_times": "3",
  13. "employee_name": "张四妹",
  14. "creation_time": "1559366189",
  15. "urlcode": "6b1260fbee1e5789cf8b02461b3be80d"
  16. },
  17. {
  18. "self_numbering": "20",
  19. "customer_name": "陈先生",
  20. "customer_phone": "13900139000",
  21. "service_ltems": "新屋开荒",
  22. "service_times": "3",
  23. "employee_name": "张四妹",
  24. "creation_time": "1559368311",
  25. "urlcode": "f84f70d24942515ff84de5a7fdf70fc2"
  26. }
  27. ],
  28. "page": "5",
  29. "num": "2",
  30. "page_num": 5,
  31. "耗时": 0.069000000000000006
  32. }
  33. }

错误时返回:

  1. {
  2. "code": 400,
  3. "msg": "access_token 无效!",
  4. "data": {
  5. "status": "error"
  6. }
  7. }

说明:出现此错误时,请重新请求授权。