API接口目录

4PS业务

4PS接单管理API
4PS任务作业API
4PS仓库管理API
4ps仓库库存
4PS商品管理API
异常码自查工具
suning.fourps.storagesub.add 商品入库预约申请
¥免费

通过此接口4PS用户可以进行商品入库预约申请。 1. 只能选择申请非自身仓库,进行商品入库预约。 2. 如果商品含有SKU,只能使用SKU级别的商品编码入库预约。 3. 入库日期的选择控制在当前日期的第二天及第二天之后的一周内,如当前日期为7月1日,可选择日期为7月2日-7月9日。 4. 入库预约的选择控制在9:00-18:00之间。 5. 一次申请的商品种数最多为450种,超过450种则需要另外再行申请。

公共参数
请求参数
名称 类型 是否必须 示例值 描述
warehouseCode String Y L025 仓库ID。已租用的苏宁仓库ID
storageDate String Y 2014-11-24 预约入库日期。
storageTime String Y 18:00 预约入库时间。
carrier String Y 张某 承运人。
contactsNumber String Y 11111111111 联系电话。
waybill String N EMS111 运单号。运单号
purchaseOrderId String N 1 采购订单号。
customerId String N 1 客户选品单号。
commodityCode String N 100020001 商品编码。商家商品编码、商品编码,二者必填其一
supplierCommodityCode String N 100020001 商家商品编码。商家商品编码、商品编码,二者必填其一
count String Y 15 商品数量。预约入库的商品数量(范围0-999999)
响应参数
名称 类型 示例值 描述
status String Y 状态。Y成功
orderId String SN111111 入库预约单号。
workId String 1 仓库作业单号。
errorDesc String 预约时段已满 失败原因
matchDate String 2016-08-30 推荐退库日期。
matchTime String 10:00 推荐退库时间。
请求示例
  • XML示例
  • JSON示例
复制全部代码
                                
<sn_request>
	<sn_body>
		<addStoragesub>
			<warehouseCode>L025</warehouseCode>
			<storageDate>2014-11-24</storageDate>
			<storageTime>18:00</storageTime>
			<carrier>张某</carrier>
			<contactsNumber>11111111111</contactsNumber>
			<waybill>EMS111</waybill>
			<purchaseOrderId>1</purchaseOrderId>
			<customerId>1</customerId>
			<commodityList>
				<commodityCode>100020001</commodityCode>
				<supplierCommodityCode>100020001</supplierCommodityCode>
				<count>1</count>
			</commodityList>
			<commodityList>
				<commodityCode>100020002</commodityCode>
				<supplierCommodityCode>100020001</supplierCommodityCode>
				<count>2</count>
			</commodityList>
		</addStoragesub>
	</sn_body>
</sn_request>  
            	
                                
                                
{
  "sn_request": {
    "sn_body": {
      "addStoragesub": {
        "warehouseCode": "L025",
        "storageDate": "2014-11-24",
        "storageTime": "18:00",
        "carrier": "张某",
        "contactsNumber": "11111111111",
        "waybill": "EMS111",
        "purchaseOrderId": "1",
        "customerId": "1",
        "commodityList": [
          {
            "commodityCode": "100020001",
            "supplierCommodityCode": "100020001",
            "count": "1"
          },
          {
            "commodityCode": "100020002",
            "supplierCommodityCode": "100020001",
            "count": "2"
          }
        ]
      }
    }
  }
}          	
            	
                                
响应示例
  • XML示例
  • JSON示例
复制全部代码
                              
<sn_responseContent>
	<sn_body>
		<addStoragesub>
			<status>Y</status>
			<orderId>1</orderId>
			<workId>1</workId>
		</addStoragesub>
	</sn_body>
</sn_responseContent>           	
            	
                              
                              
{
  "sn_responseContent": {
    "sn_body": {
      "addStoragesub": {
        "status": "Y",
        "orderId": "1",
        "workId": "1"
      }
    }
  }
}            	
            	
                              
异常示例
  • XML示例
  • JSON示例
复制全部代码

  
  	API异常码
  	异常码中文描述
  

                           	  
{
  "sn_responseContent": {
    "sn_error": {
      "error_code": "API异常码",
      "error_msg": "异常码中文描述"
    }
  }
}
                           		
业务异常码
异常码 错误描述 解决方案
biz.fourps.addstoragesub.missing-parameter:* 此字段值不能为空,*表示对应的字段节点名称 请输入正确参数。
biz.fourps.addstoragesub.invalid-biz:storagedate 预约入库日期格式错误 请输入正确参数。
isp.sys.service.unavailable.mims 系统异常,请稍后再试(系统异常) 请联系苏宁技术人员。
biz.fourps.addstoragesub.invalid-biz:warehousecode 仓库id字段值非法,不存在此苏宁仓库或此苏宁仓库未被此用户租用 请输入正确参数。
biz.fourps.addstoragesub.invalid-biz:commoditycode 商品编码非法,不存在此商品编码或此商品不属于此用户 请输入正确参数。
biz.fourps.addstoragesub:product-illegal 商品含有sku,商品编码只能使用sku级别的 请输入正确参数。
biz.fourps.addstoragesub.invalid-biz:count 商品数量非法,数量不能输入小数 请输入正确参数。
biz.fourps.addstoragesub:time-over 预约入库日期不在规定的范围内 请输入正确参数。
biz.fourps.addstoragesub.invalid-biz:storagetime 预约入库时间格式非法或不在规定的时间范围内 请输入正确参数。
biz.fourps.addstoragesub:product-num-over 超过商品种数数量的上限值。 请输入正确参数。
biz.fourps.addstoragesub:usercode-illegal 用户编码非法 请输入正确参数。
biz.fourps.addstoragesub.invalid-biz:carrier-over-length 承运人字段值超过20个字符 请输入正确参数。
biz.fourps.addstoragesub.invalid-biz:contactsnumber-over-length 联系人电话字段值超过限定长度 请输入正确参数。
biz.fourps.addstoragesub.invalid-biz:waybill-over-length 运单号字段值超过限定长度 请输入正确参数。
biz.fourps.addstoragesub:product-repeat 同一预约单的商品不能重复 请输入正确参数。
biz.fourps.addstoragesub:product-prop-illegal 商品与仓库的大小件属性不符 请输入正确参数。
biz.fourps.addstoragesub:suborder-over 预约单个数不能超过10个 请输入正确参数。
biz.fourps.addstoragesub:sys-error 调度异常 请输入正确参数。
biz.fourps.addstoragesub.invalid-biz:100 供应商选定时间预约失败,但未来三天内有符合预约条件日期,请按提示选择 请输入正确参数。
公共异常码
API工具
FAQ

Q:商品入库预约申请接口如何使用?

A:通过此接口可商品入库预约申请