文档中心 > API类目 > 子账号管理API

taobao.global.subaccount.get (获取子账号信息)

获取子账号详情信息

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
sub_user_id Number 必须 123453 查询子账号信息

响应参数

名称 类型 示例值 描述
module String demo success
result_message String belongToSites值非法 错误信息
result_code Number 88 错误码
is_success Boolean false 是否成功

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
GlobalSubaccountGetRequest req = new GlobalSubaccountGetRequest();
req.setSubUserId(123453L);
GlobalSubaccountGetResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<global_subaccount_get_response>
    <module>demo</module>
    <result_message>belongToSites值非法</result_message>
    <result_code>88</result_code>
    <is_success>false</is_success>
</global_subaccount_get_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

返回
顶部