海星仓开放平台
  1. 入库(带箱唛)
海星仓开放平台
  • 开发指南
    • 对接必看
    • 错误码
    • 枚举
    • 授权接口
      POST
  • 基础资料
    • 店铺列表
      GET
    • 开通的仓库列表
      GET
    • 物流渠道列表
      GET
    • 国家列表
      GET
  • 商品
    • 商品修改
      POST
    • 商品删除
      POST
    • 商品新增
      POST
    • 商品列表
      POST
    • 商品详情
      POST
    • 商品分类
      GET
    • 商品品牌
      GET
    • 商品单位
      GET
  • 订单
    • 订单新增
      POST
    • 订单列表
      GET
    • 订单详情
      POST
    • 包裹列表
      GET
    • 订单拦截
      POST
  • 库存
    • 库存查询
    • 库存日志查询
  • 入库
    • 新增入库预约
    • 入库预约详情
    • 入库预约列表
    • 入库预约完结
    • 入库预约作废
  • 入库(带箱唛)
    • 新增入库预约
      POST
    • 入库预约详情
      POST
    • 入库预约列表
      POST
    • 入库预约完结
      POST
    • 入库预约作废
      POST
  • 退货
    • 退件列表
    • 退件申请详情
  • 订阅推送
    • 推送对接必看
    • 订单状态推送
    • 入库结果推送
    • 测试推送
    • 商品信息推送
  1. 入库(带箱唛)

入库预约列表

POST
/open/inboundNotice/page
入库预约列表

请求参数

Header 参数

Body 参数application/json

示例
{
    "inboundNoticeCode": "", //单号
    "thirdCodes": [ //第三方单号(批量)
        ""
    ],
    "warehouseId": "", //仓库
    "createTimeFrom": "", //创建时间开始
    "createTimeTo": "", //创建时间结束
    "updateTimeFrom": "", //更新时间开始
    "updateTimeTo": "", //更新时间结束
    "current": 1, //当前页
    "size": 10 //每页数量
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/open/inboundNotice/page' \
--header 'Authorization: Bearer {{token}}' \
--header 'timestamp: {{timestamp}}' \
--header 'sign: {{sign}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "inboundNoticeCode": "", //单号
    "thirdCodes": [ //第三方单号(批量)
        ""
    ],
    "warehouseId": "", //仓库
    "createTimeFrom": "", //创建时间开始
    "createTimeTo": "", //创建时间结束
    "updateTimeFrom": "", //更新时间开始
    "updateTimeTo": "", //更新时间结束
    "current": 1, //当前页
    "size": 10 //每页数量
}'

返回响应

🟢200成功
*/*
OK
Body

示例
{
    "code": 0,
    "msg": "string",
    "data": {
        "total": 0,
        "size": 0,
        "current": 0,
        "list": [
            {
                "inboundNoticeCode": "string",
                "inboundCode": "string",
                "thirdCode": "string",
                "warehouseId": 0,
                "status": "0",
                "inboundStatus": "40",
                "details": [
                    {
                        "inboundNoticeCode": "string",
                        "arrivalStatus": "30",
                        "boxNo": "string",
                        "skuCode": "string",
                        "quantity": 0,
                        "arrivalQuantity": 0,
                        "skuName": "string",
                        "costPrice": 0,
                        "unitCode": "string",
                        "boxWidth": 0,
                        "boxLength": 0,
                        "boxHeight": 0,
                        "labeling": true,
                        "qualityCheck": true
                    }
                ],
                "expectArrivalTime": "2019-08-24",
                "arriveTime": "2019-08-24T14:15:22Z",
                "expressName": "string",
                "expressNo": "string",
                "expressPrice": 0,
                "orderPieces": 0,
                "orderVolume": 0,
                "orderWeight": 0,
                "arrivePieces": 0,
                "arriveWeight": 0,
                "arriveVolume": 0,
                "remark": "string",
                "recvCountry": "string",
                "recvProvince": "string",
                "recvCity": "string",
                "recvAddress": "string",
                "sendCountry": "string",
                "sendProvince": "string",
                "sendCity": "string",
                "sendAddress": "string",
                "createTime": "2019-08-24T14:15:22Z",
                "updateTime": "2019-08-24T14:15:22Z",
                "receiveFinishTime": "2019-08-24T14:15:22Z",
                "finishTime": "2019-08-24T14:15:22Z",
                "warehouseRemark": "string"
            }
        ]
    },
    "trace": "string",
    "extra": {
        "property1": {},
        "property2": {}
    },
    "ok": true
}
🟠400请求有误
🟠403禁止访问
🔴500服务器错误
🟠424授权过期
🟠429限流
修改于 2025-11-13 03:12:27
上一页
入库预约详情
下一页
入库预约完结
Built with