排期查询

报告解读排期查询。

请求URL:

https://m-api.lejian.com/open-api/V2/counter/report/queryOrderableCapacity?accessToken=ACCESS_TOKEN

请求协议:HTTPS
请求方式:POST
需要签名: 否
URL参数:
参数名 是否必须 类型 说明
accessToken string 当前有效的accessToken
POST参数示例
  1. {
  2. "businessId":1,
  3. "startDate":"2023-02-08",
  4. "endDate":"2023-04-08"
  5. }
参数名 是否必须 类型 说明
businessId Integer 业务编号
startDate date 起始日期
endDate date 终止日期

返回示例:

正确时返回:

  1. {
  2. "success":"T",
  3. "data":{
  4. "dayCapacitys": [
  5. {
  6. "dateStr": 2023-02-08,
  7. "simpleCapacities": [
  8. {
  9. "periodId": 4384,
  10. "periodName": "14:45-15:00",
  11. "maxNum": 1,
  12. "availableNum": 1,
  13. "businessId": 1
  14. },
  15. {
  16. "periodId": 4385,
  17. "periodName": "15:00-15:15",
  18. "maxNum": 1,
  19. "availableNum": 1,
  20. "businessId": 1,
  21. "recordId": 97
  22. }
  23. ]
  24. },
  25. {
  26. "dateStr": 2023-02-09,
  27. "simpleCapacities": [
  28. {
  29. "periodId": 4395,
  30. "periodName": "14:00-14:15",
  31. "maxNum": 1,
  32. "availableNum": 1,
  33. "businessId": 1
  34. },
  35. {
  36. "periodId": 4396,
  37. "periodName": "14:15-14:30",
  38. "maxNum": 1,
  39. "availableNum": 1,
  40. "businessId": 1
  41. }
  42. ]
  43. }
  44. ]
  45. },
  46. "msg":"success"
  47. }

返回参数说明:

参数名 类型 说明
dayCapacitys Array[] 天数容量列表,列表类为每天的人数容量
simpleCapacities Array[] 时段容量列表,当天时段列表
periodId Integer 时间段id,用于下单
dateStr string 日期(格式:yyyy-mm-dd)
maxNum Integer 最大库存人数
periodName string 时段
availableNum Integer 可约订单数
businessId integer 业务id,乐荐提供
文档更新时间: 2023-02-08 16:09