alipay.baoxian.seller.account.query (查询卖家绑定的支付宝账户信息)

根据卖家理赔收入账号查询卖家绑定的支付宝账户信息

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
ins_seller_alipay_account_query_request InsSellerAlipayAccountQueryRequest 可选 请求参数
  • └ alipay_account_id
  • String
  • 必须
  • 20881232532
  • 卖家绑定的支付宝2088账号
  • └ sp_no
  • String
  • 必须
  • 6284
  • 标准产品编号
  • └ usage_scene
  • Number
  • 可选
  • 2
  • 使用场景,1-保费支出,2-理赔收入

响应参数

名称 类型 示例值 描述
biz_error_code String SYSTEM_ERROR 错误码
biz_error_msg String 系统错误 错误信息
model InsSellerAlipayAccountQueryResponse test 查询结果
  • ins_seller_alipay_account_dtos
  • InsSellerAlipayAccountDto []
  • test
  • 卖家绑定的支付宝账户信息
  • └ alipay_account_id
  • String
  • 2088122325
  • 卖家支付宝2088账号
  • └ gmt_create
  • Date
  • 2019-03-20
  • 创建时间
  • └ gmt_modified
  • Date
  • 2019-03-20
  • 修改时间
  • └ id
  • Number
  • 23
  • 主键
  • └ seller_id
  • Number
  • 23333333
  • 卖家id
  • └ sp_no
  • String
  • 6284
  • 标准产品编号
  • └ usage_scene
  • Number
  • 1
  • 使用场景
biz_success Boolean true 成功标志

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlipayBaoxianSellerAccountQueryRequest req = new AlipayBaoxianSellerAccountQueryRequest();
AlipayBaoxianSellerAccountQueryRequest.InsSellerAlipayAccountQueryRequest obj1 = new AlipayBaoxianSellerAccountQueryRequest.InsSellerAlipayAccountQueryRequest();
obj1.setAlipayAccountId("20881232532");
obj1.setSpNo("6284");
obj1.setUsageScene(2L);
req.setInsSellerAlipayAccountQueryRequest(obj1);
AlipayBaoxianSellerAccountQueryResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alipay_baoxian_seller_account_query_response>
    <biz_error_code>SYSTEM_ERROR</biz_error_code>
    <biz_error_msg>系统错误</biz_error_msg>
    <model>
        <ins_seller_alipay_account_dtos>
            <ins_seller_alipay_account_dto>
                <alipay_account_id>2088122325</alipay_account_id>
                <gmt_create>2019-03-20</gmt_create>
                <gmt_modified>2019-03-20</gmt_modified>
                <id>23</id>
                <seller_id>23333333</seller_id>
                <sp_no>6284</sp_no>
                <usage_scene>1</usage_scene>
            </ins_seller_alipay_account_dto>
        </ins_seller_alipay_account_dtos>
    </model>
    <biz_success>true</biz_success>
</alipay_baoxian_seller_account_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

返回
顶部