TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AliexpressSolutionOrderFulfillRequest req = new AliexpressSolutionOrderFulfillRequest();
req.setServiceName("EMS");
req.setTrackingWebsite("www.17track.com");
req.setOutRef("888877779999");
req.setSendType("part");
req.setDescription("memo");
req.setLogisticsNo("LA88887777CN");
AliexpressSolutionOrderFulfillResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());
                 
                
                    ITopClient client = new DefaultTopClient(url, appkey, secret);
AliexpressSolutionOrderFulfillRequest req = new AliexpressSolutionOrderFulfillRequest();
req.ServiceName = "EMS";
req.TrackingWebsite = "www.17track.com";
req.OutRef = "888877779999";
req.SendType = "part";
req.Description = "memo";
req.LogisticsNo = "LA88887777CN";
AliexpressSolutionOrderFulfillResponse rsp = client.Execute(req, sessionKey);
Console.WriteLine(rsp.Body);
                 
                
                    $c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new AliexpressSolutionOrderFulfillRequest;
$req->setServiceName("EMS");
$req->setTrackingWebsite("www.17track.com");
$req->setOutRef("888877779999");
$req->setSendType("part");
$req->setDescription("memo");
$req->setLogisticsNo("LA88887777CN");
$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=aliexpress.solution.order.fulfill' \
-d 'partner_id=apidoc' \
-d 'session=b1ba4b1a-8e2d-4c4f-ad5c-aa9cb8765cd9' \
-d 'sign=7B05B71382C9742C545DAB97FE5914D9' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-10-31+21%3A53%3A51' \
-d 'v=2.0' \
-d 'description=memo' \
-d 'logistics_no=LA88887777CN' \
-d 'out_ref=888877779999' \
-d 'send_type=part' \
-d 'service_name=EMS' \
-d 'tracking_website=www.17track.com'
                 
                
                    
                        # -*- coding: utf-8 -*-
import top.api
req=top.api.AliexpressSolutionOrderFulfillRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.service_name="EMS"
req.tracking_website="www.17track.com"
req.out_ref="888877779999"
req.send_type="part"
req.description="memo"
req.logistics_no="LA88887777CN"
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,"aliexpress.solution.order.fulfill");
add_param(pRequest,"service_name","EMS");
add_param(pRequest,"tracking_website","www.17track.com");
add_param(pRequest,"out_ref","888877779999");
add_param(pRequest,"send_type","part");
add_param(pRequest,"description","memo");
add_param(pRequest,"logistics_no","LA88887777CN");
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('aliexpress.solution.order.fulfill', {
	'service_name':'EMS',
	'tracking_website':'www.17track.com',
	'out_ref':'888877779999',
	'send_type':'part',
	'description':'memo',
	'logistics_no':'LA88887777CN'
}, function(error, response) {
	if (!error) console.log(response);
	else console.log(error);
})