QimenCloudClient client = new DefaultQimenCloudClient(url, appkey, secret);
TmallCarLeasePaystatussynchronizeRequest req = new TmallCarLeasePaystatussynchronizeRequest();
req.setOrderId(1232123456L);
req.setType(1L);
req.setAmount(2500000L);
req.setRefOrderId(22334343434L);
TmallCarLeasePaystatussynchronizeResponse rsp = client.execute(req);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
TmallCarLeasePaystatussynchronizeRequest req = new TmallCarLeasePaystatussynchronizeRequest();
req.OrderId = 1232123456L;
req.Type = 1L;
req.Amount = 2500000L;
req.RefOrderId = 22334343434L;
TmallCarLeasePaystatussynchronizeResponse rsp = client.Execute(req);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new TmallCarLeasePaystatussynchronizeRequest;
$req->setOrderId("1232123456");
$req->setType("1");
$req->setAmount("2500000");
$req->setRefOrderId("22334343434");
$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=qimen.tmall.car.lease.paystatussynchronize' \
-d 'partner_id=apidoc' \
-d 'sign=B76C8C737378EEF2F8EFD03EA86FE08D' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-05-02+23%3A09%3A33' \
-d 'v=2.0' \
-d 'amount=2500000' \
-d 'orderId=1232123456' \
-d 'refOrderId=22334343434' \
-d 'type=1'
# -*- coding: utf-8 -*-
import top.api
req=top.api.QimenTmallCarLeasePaystatussynchronizeRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.orderId=1232123456
req.type=1
req.amount=2500000
req.refOrderId=22334343434
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,"qimen.tmall.car.lease.paystatussynchronize");
add_param(pRequest,"orderId","1232123456");
add_param(pRequest,"type","1");
add_param(pRequest,"amount","2500000");
add_param(pRequest,"refOrderId","22334343434");
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('qimen.tmall.car.lease.paystatussynchronize', {
'orderId':'1232123456',
'type':'1',
'amount':'2500000',
'refOrderId':'22334343434'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})