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());
ITopClient client = new DefaultTopClient(url, appkey, secret);
TmallXiaoyuanShareIsvCampusWalletWithdrawConfirmRequest req = new TmallXiaoyuanShareIsvCampusWalletWithdrawConfirmRequest();
TmallXiaoyuanShareIsvCampusWalletWithdrawConfirmRequest.IsvWalletWithdrawConfirmRequestDomain obj1 = new TmallXiaoyuanShareIsvCampusWalletWithdrawConfirmRequest.IsvWalletWithdrawConfirmRequestDomain();
obj1.MixBuyerId = "123";
obj1.FundAccountId = 1233L;
obj1.SubjectId = 1L;
obj1.FundSubjectCode = "2";
obj1.WithdrawAmount = 1L;
obj1.FundWithdrawRenderListStr = "123";
obj1.FundAccreditId = 1L;
req.IsvWalletWithdrawConfirmRequest_ = obj1;
TmallXiaoyuanShareIsvCampusWalletWithdrawConfirmResponse rsp = client.Execute(req);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new TmallXiaoyuanShareIsvCampusWalletWithdrawConfirmRequest;
$isv_wallet_withdraw_confirm_request = new IsvWalletWithdrawConfirmRequest;
$isv_wallet_withdraw_confirm_request->mix_buyer_id="123";
$isv_wallet_withdraw_confirm_request->fund_account_id="1233";
$isv_wallet_withdraw_confirm_request->subject_id="1";
$isv_wallet_withdraw_confirm_request->fund_subject_code="2";
$isv_wallet_withdraw_confirm_request->withdraw_amount="1";
$isv_wallet_withdraw_confirm_request->fund_withdraw_render_list_str="123";
$isv_wallet_withdraw_confirm_request->fund_accredit_id="1";
$req->setIsvWalletWithdrawConfirmRequest(json_encode($isv_wallet_withdraw_confirm_request));
$resp = $c->execute($req);
curl -X POST 'http://gw.api.taobao.com/router/rest' \
-H 'Content-Type:application/x-www-form-urlencoded;charset=utf-8' \
-d 'app_key=12129701' \
-d 'format=json' \
-d 'method=tmall.xiaoyuan.share.isv.campus.wallet.withdraw.confirm' \
-d 'partner_id=apidoc' \
-d 'sign=0D16B8A568D0D0216024F3AE733D4284' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-12-15+07%3A26%3A23' \
-d 'v=2.0' \
-d 'isv_wallet_withdraw_confirm_request=null'
# -*- coding: utf-8 -*-
import top.api
req=top.api.TmallXiaoyuanShareIsvCampusWalletWithdrawConfirmRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.isv_wallet_withdraw_confirm_request="数据结构示例JSON格式"
try:
resp= req.getResponse()
print(resp)
except Exception,e:
print(e)
pTopRequest pRequest = alloc_top_request();
pTopResponse pResponse = NULL;
pTaobaoClient pClient = alloc_taobao_client(url, appkey, appsecret);
set_api_name(pRequest,"tmall.xiaoyuan.share.isv.campus.wallet.withdraw.confirm");
add_param(pRequest,"isv_wallet_withdraw_confirm_request","数据结构JSON示例");
pResponse = top_execute(pClient,pRequest,NULL);
printf("ret code:%d\n",pResponse->code);
if(pResponse->code == 0){
pTopResponseIterator ite = init_response_iterator(pResponse);
pResultItem pResultItem = alloc_result_item();
while(parseNext(ite, pResultItem) == 0){
printf("%s:%s\n",pResultItem->key,pResultItem->value);
}
destroy_response_iterator(ite);
destroy_result_item(pResultItem);
}
destroy_top_request(pRequest);
destroy_top_response(pResponse);
destroy_taobao_client(pClient);
TopClient = require('./topClient').TopClient;
var client = new TopClient({
'appkey': 'appkey',
'appsecret': 'secret',
'REST_URL': 'http://gw.api.taobao.com/router/rest'
});
client.execute('tmall.xiaoyuan.share.isv.campus.wallet.withdraw.confirm', {
'isv_wallet_withdraw_confirm_request':'数据结构JSON示例'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})