TTWUSA APIV2

入库管理

上架查询

查询入库上架状态。

POST
生产环境https://ssl.glitzcloud.com/agent/v1/asn/storage/putawayQuery
测试环境http://gztest.glitzcloud.com/agent/v1/asn/storage/putawayQuery

说明

1、功能名称:入库上架查询

2、功能描述:入库上架查询

鉴权说明

请参阅鉴权签名说明。

请求参数

名称类型必填示例值更多示例描述
store_nameStringThe Warehouse USA仓库名称
storage_snStringGCI12092500001GCI12092500001入库单单号
product_snStringchanpin456chanpin456SKU
upcStringX002IZZIWLX002IZZIWLUPC

返回字段

参数类型示例值描述
storage_snStringGCI16091800002入库单号
product_snStringchanpin456SKU
UPCStringX002IZZIWLUPC
forecast_qtyString40预报入库数量
pending_receive_qtyString10待入库数量
actual_received_qtyString30已入库数量
to_be_shelf_qtyString0待上架数量
on_shelf_qtyString30已上架数量

示例

请求示例
{
    "apikey": "85083bf162a81684f50163e06045f",
    "storage_sn": "GCI12092500002",
    "product_sn": "chanpin456",
    "secretkey": "85083bfa811e684f500163e06045f",
    "store_name": "TWUSA01",
    "sign": "c78fda25eafdda37f8a24312909362e"
}
返回示例
{
    "status": 200,
    "reqMsg": "ok",
    "result": [
        {
            "storage_sn": "GCI07162500003",
            "product_sn": "chanpin123",
            "upc": "",
            "forecast_qty": 100,
            "pending_receive_qty": 0,
            "actual_received_qty": 100,
            "to_be_shelf_qty ": 0,
            "on_shelf_qty": 100
        },
        {
            "storage_sn": "GCI07162500003",
            "product_sn": "chanpin456",
            "upc": "",
            "forecast_qty": 100,
            "pending_receive_qty": 0,
            "actual_received_qty": 100,
            "to_be_shelf_qty ": 0,
            "on_shelf_qty": 100
        }
    ]
}
示例 3
{
    "status": 400,
    "reqMsg": "请输入 storage_sn, product_sn, upc 其中之一",
    "result": []
}