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.shopcategory.modify 店铺分类信息修改
¥免费

通过此接口完成店铺分类基本信息的修改。

公共参数
请求参数
名称 类型 是否必须 示例值 描述
categoryCode String Y D00001 店铺分类ID
categoryName String N 宝宝奶粉 店铺分类名称
categorySort String N 1 分类顺序
categorySet String N 1 分类设置,0:展开 1:收起
categoryImg String N http://xxxx/201312061143447224_x.jpg 通过图片上传接口上传至图片空间后返回的URL地址
响应参数
名称 类型 示例值 描述
result String 成功标识:Y(成功),N(失败)
error_code String 错误代码
请求示例
  • XML示例
  • JSON示例
复制全部代码
                                <sn_request>
   <sn_body>        
	   <modifyCategory>
		    <shopCategory>            
          <categoryCode>111111</categoryCode>
          <categoryName>贝因美奶粉</categoryName>
          <categorySort>1</categorySort>
          <categorySet>1</categorySet>
          <categoryImg>http://447224_x.jpg</categoryImg>
       	</shopCategory>
				<shopCategory>            
          <categoryCode>222222</categoryCode>
          <categoryName>三鹿奶粉</categoryName>
          <categorySort>2</categorySort>
          <categorySet>0</categorySet>
          <categoryImg>http://7565654_x.jpg</categoryImg>
        </shopCategory> 
		</modifyCategory>								    									    
	</sn_body>
</sn_request>
                                
                                {
 "sn_request":{    
   "sn_body":{      
    "modifyCategory":{        
	    "shopCategory":[ 
		    {
				  "categoryCode":"111111",
					"categoryName":"贝因美奶粉",
					"categorySort":"1",
					"categorySet":"1",
					"categoryImg":"http://447224_x.jpg"
			  },
			  {
				  "categoryCode":"222222",
					"categoryName":"三鹿奶粉",
					"categorySort":"2",
					"categorySet":"0",
					"categoryImg":"http://7565654_x.jpg"
			  }
		  ] 		 
    }    
   }  
 }
}
                                
响应示例
  • XML示例
  • JSON示例
复制全部代码
                              <sn_responseContent>    
    <sn_head/>    
		<sn_body>        
			<modifyCategory>            
				<result>Y</result>                
			</modifyCategory>            
	  </sn_body>
</sn_responseContent>
                              
                              {  
	"sn_responseContent":{    
		"sn_body":{      
			"modifyCategory":{          
			    "result":"Y"      
			}
		 }	
   }
 }
                              
异常示例
  • XML示例
  • JSON示例
复制全部代码

  
  	API异常码
  	异常码中文描述
  

                           	  
{
  "sn_responseContent": {
    "sn_error": {
      "error_code": "API异常码",
      "error_msg": "异常码中文描述"
    }
  }
}
                           		
业务异常码
异常码 错误描述 解决方案
biz.shop.modifycategory.missing-parameter:categoryCode 店铺分类ID值为空 必填项,请检查店铺分类ID值是否非空
biz.shop.modifycategory.categorycode:length-overlong 店铺分类ID超过限定长度 店铺分类ID不能超过18个字符
biz.shop.modifycategory.categoryname:format-error 店铺分类名称格式错误 店铺分类名称不能含有特殊字符
biz.shop.modifycategory.categoryname:length-overlong 店铺分类名称超过限定长度 店铺分类名称不能超过20个字符(或10个中文字符)
biz.shop.modifycategory.categorysort:format-error 分类排序格式错误 分类排序只能为数字,最大长度为4个字符
biz.shop.modifycategory.categoryset:enumeration-error 分类设置枚举值错误 请检查分类设置值是否正确(0:展开 1:收起)
biz.shop.modifycategory.categoryimg:format-error 店铺分类图片URL格式错误 请检查店铺分类图片URL格式,http://开头 + .jpg/png/gif/jpeg结尾
biz.shop.modifycategory.categorysort:repeat 分类排序值重复 分类排序值不能重复
biz.shop.modifycategory.categorycode:value-inexistence 店铺分类ID不存在 请检查输入的店铺分类ID是否正确
biz.shop.modifycategory.vendorcode:value-inexistence 商户编码不存在 请检查商户编码是否正确
biz.shop.modifycategory.sensitiveword-error:* 店铺分类信息含有敏感词。*号表示具体某个敏感词 店铺分类信息不能含有敏感词
biz.shop.modifycategory.invalid-biz:103 图片非法 请检查图片是否合法
biz.shop.modifycategory.categoryimg:not-snurl 图片URL非苏宁内链 请检查图片URL是否为苏宁内链地址
公共异常码
API工具
FAQ

Q:店铺分类信息修改接口如何使用?

A:通过此接口完成店铺分类基本信息的修改。可修改的店铺分类基本信息有:店铺分类名称、分类排序、分类展开设置、分类图片地址。