注意:以下文档只适用于TOP接口,请谨慎使用!

alipay.baoxian.seller.alipayaccount.query (查询卖家理赔收入账号)

查询卖家理赔收入账号

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
alipay_account_id String 可选 33 本期不填
seller_id String 必须 33233 卖家uid
sp_no String 必须 6284 标准产品编号
usage_scene Number 必须 2 场景码,理赔默认填2

响应参数

名称 类型 示例值 描述
result AliSceneResult 结果
  • └ biz_error_code
  • String
  • 错误码
  • └ biz_error_msg
  • String
  • 错误信息
  • model
  • InsSellerAlipayAccountQueryResponse
  • 模型
  • ins_seller_alipay_account_d_t_o_s
  • InsSellerAlipayAccountDto []
  • 账号信息
  • └ alipay_account_id
  • String
  • 卖家收入账号
  • └ alipay_account_logon_id
  • String
  • 卖家收入账号登录名称
  • └ invalid_time
  • Date
  • 失效时间
  • └ real_name
  • String
  • 卖家真实姓名
  • └ seller_id
  • Number
  • 卖家id
  • └ status
  • Number
  • 状态
  • └ usage_scene
  • Number
  • 使用场景
  • └ biz_success
  • Boolean
  • 是否成功

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlipayBaoxianSellerAlipayaccountQueryRequest req = new AlipayBaoxianSellerAlipayaccountQueryRequest();
req.setAlipayAccountId("33");
req.setSellerId("33233");
req.setSpNo("6284");
req.setUsageScene(2L);
AlipayBaoxianSellerAlipayaccountQueryResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alipay_baoxian_seller_alipayaccount_query_response>
    <result>
        <biz_error_code></biz_error_code>
        <biz_error_msg></biz_error_msg>
        <model>
            <ins_seller_alipay_account_d_t_o_s>
                <ins_seller_alipay_account_dto>
                    <alipay_account_id></alipay_account_id>
                    <alipay_account_logon_id></alipay_account_logon_id>
                    <invalid_time></invalid_time>
                    <real_name></real_name>
                    <seller_id></seller_id>
                    <status></status>
                    <usage_scene></usage_scene>
                </ins_seller_alipay_account_dto>
            </ins_seller_alipay_account_d_t_o_s>
        </model>
        <biz_success></biz_success>
    </result>
</alipay_baoxian_seller_alipayaccount_query_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

返回
顶部