alipay.baoxian.aelocalreturn.sign (AE无忧退3.0签约接口)

AE无忧退3.0签约接口

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
ae_local_return_sign_request InsTopAeLocalReturnSignRequest 必须 request
  • └ seller_id
  • String
  • 必须
  • 214141
  • 商家ID
  • └ seller_name
  • String
  • 可选
  • 测试商家
  • 商家名称
  • └ alipay_account
  • String
  • 可选
  • 2088xxxx
  • 商家支付宝账户
  • └ cert_type
  • String
  • 可选
  • 23
  • 投保人证件类型(10(身份证)、23(营业执照))
  • └ cert_no
  • String
  • 可选
  • 3609222xxx
  • 投保人证件号
  • └ sp_no
  • String
  • 可选
  • 66666
  • 产品编号
  • └ sign_time
  • String
  • 必须
  • 1778655006
  • 签约时间戳
  • └ prod_no
  • String
  • 必须
  • xx
  • 机构产品号
  • └ extend_info
  • String
  • 可选
  • json字符串
  • 扩展字段

响应参数

名称 类型 示例值 描述
result TopResult result
  • model
  • InsTopAeLocalReturnSignResponse
  • response
  • └ sign_status
  • String
  • success
  • 签约状态
  • └ error_code
  • String
  • SYSTEM_ERROR
  • 错误码
  • └ error_msg
  • String
  • 系统异常
  • 错误描述
  • └ is_success
  • Boolean
  • true
  • 是否成功

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlipayBaoxianAelocalreturnSignRequest req = new AlipayBaoxianAelocalreturnSignRequest();
AlipayBaoxianAelocalreturnSignRequest.InsTopAeLocalReturnSignRequest obj1 = new AlipayBaoxianAelocalreturnSignRequest.InsTopAeLocalReturnSignRequest();
obj1.setSellerId("214141");
obj1.setSellerName("测试商家");
obj1.setAlipayAccount("2088xxxx");
obj1.setCertType("23");
obj1.setCertNo("3609222xxx");
obj1.setSpNo("66666");
obj1.setSignTime("1778655006");
obj1.setProdNo("xx");
obj1.setExtendInfo("json字符串");
req.setAeLocalReturnSignRequest(obj1);
AlipayBaoxianAelocalreturnSignResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alipay_baoxian_aelocalreturn_sign_response>
    <result>
        <model>
            <sign_status>success</sign_status>
        </model>
        <error_code>SYSTEM_ERROR</error_code>
        <error_msg>系统异常</error_msg>
        <is_success>true</is_success>
    </result>
</alipay_baoxian_aelocalreturn_sign_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

返回
顶部