alibaba.ihome.goods.designer.enter.check (选品中心设计师入驻状态校验)

选品中心设计师入驻状态校验

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
goods_user_info GoodsSWJUserInfoDTO 必须 用户信息
  • └ identity_type
  • String
  • 必须
  • SWJ_IDENTITY_DESIGNER
  • 用户身份类型

响应参数

名称 类型 示例值 描述
data Boolean true 是否校验通过
result_code String 2000001 错误码
result_msg String 系统错误 错误描述

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaIhomeGoodsDesignerEnterCheckRequest req = new AlibabaIhomeGoodsDesignerEnterCheckRequest();
AlibabaIhomeGoodsDesignerEnterCheckRequest.GoodsSWJUserInfoDTO obj1 = new AlibabaIhomeGoodsDesignerEnterCheckRequest.GoodsSWJUserInfoDTO();
obj1.setIdentityType("SWJ_IDENTITY_DESIGNER");
req.setGoodsUserInfo(obj1);
AlibabaIhomeGoodsDesignerEnterCheckResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_ihome_goods_designer_enter_check_response>
    <data>true</data>
    <result_code>2000001</result_code>
    <result_msg>系统错误</result_msg>
</alibaba_ihome_goods_designer_enter_check_response>

异常示例

  • XML示例
  • JSON示例
<error_response>
    <code>50</code>
    <msg>Remote service error</msg>
    <sub_code>isv.invalid-parameter</sub_code>
    <sub_msg>非法参数</sub_msg>
</error_response>

错误码解释

错误码 错误描述 解决方案

API工具

如何获得此API

FAQ

返回
顶部