文档中心 > API类目 > 天猫校园共享前端类目

tmall.xiaoyuan.share.isv.campus.wallet.withdraw.confirm (提现确认)

提现确认

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
isv_wallet_withdraw_confirm_request IsvWalletWithdrawConfirmRequest 必须 入参
  • └ mix_buyer_id
  • String
  • 可选
  • 123
  • 用户加密id
  • └ fund_account_id
  • Number
  • 可选
  • 1233
  • 用户账户id
  • └ subject_id
  • Number
  • 可选
  • 1
  • subjectId
  • └ fund_subject_code
  • String
  • 可选
  • 2
  • fundSubjectCode
  • └ withdraw_amount
  • Number
  • 可选
  • 1
  • 提现金额
  • └ fund_withdraw_render_list_str
  • String
  • 可选
  • 123
  • fundWithdrawRenderListStr
  • └ fund_accredit_id
  • Number
  • 可选
  • 1
  • 钱包id

响应参数

名称 类型 示例值 描述
result Result 出参
  • └ code
  • String
  • 123
  • code
  • └ msg
  • String
  • 1234
  • msg
  • └ success
  • Boolean
  • true
  • success
  • data
  • OperationWithdrawConfirmResponse
  • 数据
  • └ withdraw_amount
  • Number
  • 123
  • 提现金额
  • └ expiring_gift_amount
  • Number
  • 123
  • 失效赠送金额

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
TmallXiaoyuanShareIsvCampusWalletWithdrawConfirmRequest req = new TmallXiaoyuanShareIsvCampusWalletWithdrawConfirmRequest();
TmallXiaoyuanShareIsvCampusWalletWithdrawConfirmRequest.IsvWalletWithdrawConfirmRequest obj1 = new TmallXiaoyuanShareIsvCampusWalletWithdrawConfirmRequest.IsvWalletWithdrawConfirmRequest();
obj1.setMixBuyerId("123");
obj1.setFundAccountId(1233L);
obj1.setSubjectId(1L);
obj1.setFundSubjectCode("2");
obj1.setWithdrawAmount(1L);
obj1.setFundWithdrawRenderListStr("123");
obj1.setFundAccreditId(1L);
req.setIsvWalletWithdrawConfirmRequest(obj1);
TmallXiaoyuanShareIsvCampusWalletWithdrawConfirmResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<tmall_xiaoyuan_share_isv_campus_wallet_withdraw_confirm_response>
    <result>
        <code>123</code>
        <msg>1234</msg>
        <success>true</success>
        <data>
            <withdraw_amount>123</withdraw_amount>
            <expiring_gift_amount>123</expiring_gift_amount>
        </data>
    </result>
</tmall_xiaoyuan_share_isv_campus_wallet_withdraw_confirm_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

返回
顶部