API接口目录

平台业务

商品API
价格API
库存API
销售准备API
交易API
退货退款API(新)
财务API
店铺API
物流API
促销API
分销API
发票API
招商API
换货API
互动营销API
退货退款API
客服API
平台营销API
风控API
会员通API
账房API
财务记账API
异常码自查工具
suning.custom.price.update 价格更新(单个)
¥基础

通过此接口可使用苏宁商品编码或者商家商品编码对单个商品进行价格更新。
1、如果商品含有子商品,则需要用子商品编码更新;
2、苏宁商品编码可通过平台业务-商品服务-获取我的商品库信息接口获取;

公共参数
请求参数
名称 类型 是否必须 示例值 描述
productCodeStringN102652602苏宁商品编码。
itemCodeStringNB-1001010商家商品编码。苏宁商品编码、商家商品编码必须有一个有值。如果填了商家商品编码则按照商家商品编码搜索出对应的苏宁商品编码并更新价格。如果两者都填写,则以苏宁商品编码为准。
priceStringN31.55价格范围:0.01-9,999,999,999,999.99;精确到2位小数;单位:元。如31.55,表示:35元5角5分。需要在正确的价格区间内。
deductiblePriceStringN40.00抵扣金额。只有价格类型为特权定金的时候有意义。
响应参数
名称 类型 示例值 描述
resultStringYY=成功,N=不成功
请求示例
  • XML示例
  • JSON示例
复制全部代码
                                
<sn_request>
  <sn_body>
    <updatePrice>
      <productCode>102652602</productCode>
      <price>31.55</price>
      <itemCode>B-1001010</itemCode>
      <deductiblePrice>40.00</deductiblePrice>
    </updatePrice>
  </sn_body>
</sn_request>

			
                                
                                
{
  "sn_request": {
    "sn_body": {
      "updatePrice": {
        "productCode": "102652602",
        "price": "31.55",
        "itemCode": "B-1001010",
        "deductiblePrice": "40.00"
      }
    }
  }
}
			
                                
响应示例
  • XML示例
  • JSON示例
复制全部代码
                              
<sn_responseContent>
  <sn_body>
    <updatePrice>
      <result>Y</result>
    </updatePrice>
  </sn_body>
</sn_responseContent>

			
                              
                              
{
  "sn_responseContent": {
    "sn_body": {
      "updatePrice": {
        "result": "Y"
      }
    }
  }
}
			
                              
异常示例
  • XML示例
  • JSON示例
复制全部代码

  
  	API异常码
  	异常码中文描述
  

                           	  
{
  "sn_responseContent": {
    "sn_error": {
      "error_code": "API异常码",
      "error_msg": "异常码中文描述"
    }
  }
}
                           		
业务异常码
异常码 错误描述 解决方案
biz.custom.updateprice.missing-parameter:* 参数必填 请检查此参数的值,*号表示参数字段名
isp.sys.service.unavailable.mcmp 服务不可用 请联系苏宁技术人员
biz.custom.updateprice.invalid-biz:100 商品编码和商家商品编码都为空
biz.custom.updateprice.invalid-biz:101 商家商品编码未找到对应的商品编码
biz.custom.updateprice.invalid-biz:102 商品编码不为此商家的
biz.custom.updateprice.invalid-biz:103 商品编码不能为通码
biz.custom.updateprice.invalid-biz:104 价格不能为空
biz.custom.updateprice.invalid-biz:105 价格填写不正确
biz.custom.updateprice.invalid-biz:106 商品编码不存在
biz.custom.updateprice.invalid-biz:107 此商品编码暂不支持修改价格
biz.custom.updateprice.invalid-biz:108 价格和抵扣金额都为空
biz.custom.updateprice.invalid-biz:109 抵扣金额填写不正确
biz.custom.updateprice.invalid-biz:110 价格不能高于抵扣金额
biz.custom.updateprice.invalid-biz:111 020协议终止屏蔽中,不允许修改
biz.custom.updateprice.invalid-biz:112 价格不能超过高价预警值
biz.custom.updateprice.invalid-biz:113 商品售价存在低价风险 修改售价
公共异常码
API工具
FAQ

Q:价格更新后怎么查看?

A:当前商品价格需通过接口“suning.custom.price.get”查询获取。