TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
ReissueFailSyncRequest req = new ReissueFailSyncRequest();
req.setReason("OUT_OF_STOCK");
req.setBizOrderId(123456L);
req.setBizId(1234L);
req.setExtInfo("{}");
ReissueFailSyncResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
ReissueFailSyncRequest req = new ReissueFailSyncRequest();
req.Reason = "OUT_OF_STOCK";
req.BizOrderId = 123456L;
req.BizId = 1234L;
req.ExtInfo = "{}";
ReissueFailSyncResponse rsp = client.Execute(req, sessionKey);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new ReissueFailSyncRequest;
$req->setReason("OUT_OF_STOCK");
$req->setBizOrderId("123456");
$req->setBizId("1234");
$req->setExtInfo("{}");
$resp = $c->execute($req, $sessionKey);
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=taobao.reissue.fail.sync' \
-d 'partner_id=apidoc' \
-d 'session=3dcdd9d1-aeeb-4904-a56e-d93810d45048' \
-d 'sign=2D590083D0F36651869D7F401FB10DC3' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-06-15+11%3A12%3A48' \
-d 'v=2.0' \
-d 'biz_id=1234' \
-d 'biz_order_id=123456' \
-d 'ext_info=%7B%7D' \
-d 'reason=OUT_OF_STOCK'
# -*- coding: utf-8 -*-
import top.api
req=top.api.ReissueFailSyncRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.reason="OUT_OF_STOCK"
req.biz_order_id=123456
req.biz_id=1234
req.ext_info="{}"
try:
resp= req.getResponse(sessionkey)
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,"taobao.reissue.fail.sync");
add_param(pRequest,"reason","OUT_OF_STOCK");
add_param(pRequest,"biz_order_id","123456");
add_param(pRequest,"biz_id","1234");
add_param(pRequest,"ext_info","{}");
pResponse = top_execute(pClient,pRequest,sessionKey);
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('taobao.reissue.fail.sync', {
'reason':'OUT_OF_STOCK',
'biz_order_id':'123456',
'biz_id':'1234',
'ext_info':'{}'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})