1.基本信息

入库单入库过程中,新增入库数量(增量),触发通知

2.参数信息

名称 名称 名称 名称 类型 说明
platform integer 平台
event_type string 事件
timestamp string 时间
data object 入库信息
asn_id string 预发货单号
total_box string 箱子总数量
client_code string 客户编码
box_list object[] 箱子信息
po_number string 箱号
product_list object[] 商品信息
sku_code string 不带公司码的商品编码
in_qty integer 入库增量

3.推送示例

POST /example/uri HTTP/1.1
Host: www.example.com
Content-Type: application/json
Content-Length: 1238

  1. {
  2. "platform": "Mabang",
  3. "event_type": "ready_inbound",
  4. "timestamp": "1722842715",
  5. "data": {
  6. "asn_id": "ASN98765432",
  7. "client_code": "CK2023",
  8. "total_box": 2,
  9. "receiving_date": "2024-08-01 05:06:07",
  10. "box_list": [
  11. {
  12. "po_number": "ASN98765432-P001-01",
  13. "product_list": [
  14. {
  15. "sku_code": "sku001",
  16. "in_qty": 10
  17. },
  18. {
  19. "sku_code": "sku002",
  20. "in_qty": 10
  21. },
  22. {
  23. "sku_code": "sku003",
  24. "in_qty": 10
  25. }
  26. ]
  27. {
  28. "po_number": "ASN98765432-P002-01",
  29. "product_list": [
  30. {
  31. "sku_code": "sku001",
  32. "in_qty": 10
  33. }
  34. ]
  35. }
  36. ]
  37. }
  38. }

4.响应

  1. {
  2. "code":200
  3. }