领航思域业务系统
  1. 入库管理
领航思域业务系统
  • 对接说明
  • 令牌管理
    • 令牌获取
      POST
  • 基础管理
    • 业务类型列表
      GET
    • 仓库资料列表
      GET
    • 渠道资料列表
      GET
  • 产品管理
    • 产品资料新建
      POST
    • 产品资料列表
      POST
  • 库存管理
    • 单个库存查询
      POST
    • 批量库存查询
      POST
  • 入库管理
    • 入库委托新建
      POST
    • 入库委托取消
      POST
    • 入库委托查询
      POST
  • 出库管理
    • 出库委托创建
      POST
    • 出库委托取消
      POST
    • 出库委托查询
      POST
  • 运单管理
    • 运单委托新建
      POST
    • 运单委托取消
      POST
    • 运单委托查询
      POST
  1. 入库管理

入库委托查询

POST
/api/v1/inbound/get

请求参数

Header 参数

Body 参数application/json

示例
{
    "referenceNumber": "5061989-26664"
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://webapi.fulfillment.keythus.com/api/v1/inbound/get' \
--header 'Authorization: Bearer {{token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "referenceNumber": "5061989-26664"
}'

返回响应

🟢200成功
application/json
Body

示例
{
    "success": true,
    "code": 0,
    "msg": "成功",
    "language": "ZH",
    "count": 1,
    "data": {
        "internalNumber": "IC20101700001",
        "inboundStatus": 25,
        "productType": "spsp",
        "productGroup": "SWORDX*1",
        "businessCode": "FBWS",
        "warehouseCode": "USNJ",
        "channelCode": "",
        "transferNumber": null,
        "referenceNumber": "5061989-26664",
        "cargoType": "PACKAGE",
        "batteryFlag": "true",
        "batteryType": "PI967",
        "containerType": null,
        "confirmFlag": true,
        "confirmTime": "2020-10-17 17:40:48",
        "approvalFlag": true,
        "approvalTime": "2020-10-17 17:40:49",
        "cancelFlag": false,
        "cancelTime": null,
        "abnormalFlag": false,
        "abnormalTime": null,
        "abnormalType": null,
        "abnormalRemark": null,
        "receiveFlag": true,
        "receiveTime": "2020-10-17 18:43:36",
        "stockFlag": true,
        "stockTime": "2020-10-17 18:43:36",
        "receivableFlag": false,
        "receivableTime": null,
        "receivableAmount": 0,
        "createTime": "2020-10-17 17:40:47",
        "createUser": "System",
        "updateTime": "2020-10-17 18:51:50",
        "updateUser": "ZBGJ",
        "remark": "",
        "sender": {
            "name": "zhengbao",
            "tag": null,
            "company": null,
            "email": "xxxx@qq.com",
            "phone": "18318057375",
            "country": "CN",
            "province": "guangdong",
            "city": "shenzhen",
            "county": "baoan",
            "address1": "fuhai streest junfeng build B101",
            "address2": null,
            "address3": null,
            "zipCode": "518103"
        },
        "packages": [
            {
                "inboundStatus": 20,
                "originalNumber": "",
                "transferNumber": null,
                "trackNumber": "YT2429021901001824",
                "packageIndex": 1,
                "packageNumber": "IC20101700001-0001",
                "packageWeight": 0.6,
                "packageLength": 1,
                "packageWidth": 1,
                "packageHeight": 1,
                "packageVolume": 1,
                "receiveFlag": true,
                "receiveTime": "2020-10-17 18:43:36",
                "stockFlag": true,
                "stockTime": "2020-10-17 18:43:36",
                "remark": null,
                "products": [
                    {
                        "productIndex": 1,
                        "productSku": "SWORDX",
                        "productFnsku": "",
                        "productName": "鼠标",
                        "productNameEn": "mouse",
                        "productWeight": 0.6,
                        "productLength": 1,
                        "productWidth": 1,
                        "productHeight": 1,
                        "productVolume": 1,
                        "productQuantity": 1,
                        "productLink": null,
                        "unitPrice": 32,
                        "totalPrice": 32,
                        "currency": "USD",
                        "hsCode": "8471607200",
                        "declareBrand": "WLMOUSE",
                        "declareModel": "SWORDX",
                        "declareMaterial": null,
                        "declarePurpose": null,
                        "declareProperty": null,
                        "declareUnit": "007",
                        "declarePrice": 155,
                        "declareCurrency": "",
                        "originCountry": null,
                        "originPlace": "36099",
                        "availableQuantity": 1,
                        "unavailableQuantity": 0,
                        "receiveFlag": true,
                        "receiveTime": "2020-10-17 18:43:36",
                        "stockFlag": true,
                        "stockTime": "2020-10-17 18:43:36",
                        "stockArea": "GOOD"
                    }
                ]
            }
        ]
    }
}
修改于 2025-04-07 06:39:20
上一页
入库委托取消
下一页
出库委托创建
Built with