TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
CainiaoGlobalImPickupBigbagWaybillInfoRequest req = new CainiaoGlobalImPickupBigbagWaybillInfoRequest();
CainiaoGlobalImPickupBigbagWaybillInfoRequest.BigbagWaybillRequest obj1 = new CainiaoGlobalImPickupBigbagWaybillInfoRequest.BigbagWaybillRequest();
obj1.setSellerId(123L);
obj1.setBigbagId(2345L);
obj1.setAppointmentOrderId(12342L);
req.setBigbagWaybillRequest(obj1);
CainiaoGlobalImPickupBigbagWaybillInfoResponse rsp = client.execute(req);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
CainiaoGlobalImPickupBigbagWaybillInfoRequest req = new CainiaoGlobalImPickupBigbagWaybillInfoRequest();
CainiaoGlobalImPickupBigbagWaybillInfoRequest.BigbagWaybillRequestDomain obj1 = new CainiaoGlobalImPickupBigbagWaybillInfoRequest.BigbagWaybillRequestDomain();
obj1.SellerId = 123L;
obj1.BigbagId = 2345L;
obj1.AppointmentOrderId = 12342L;
req.BigbagWaybillRequest_ = obj1;
CainiaoGlobalImPickupBigbagWaybillInfoResponse rsp = client.Execute(req);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new CainiaoGlobalImPickupBigbagWaybillInfoRequest;
$bigbag_waybill_request = new BigbagWaybillRequest;
$bigbag_waybill_request->seller_id="123";
$bigbag_waybill_request->bigbag_id="2345";
$bigbag_waybill_request->appointment_order_id="12342";
$req->setBigbagWaybillRequest(json_encode($bigbag_waybill_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=cainiao.global.im.pickup.bigbag.waybill.info' \
-d 'partner_id=apidoc' \
-d 'sign=2F28658E3AE23FDFA90DA97E50237A3F' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-06-23+20%3A42%3A17' \
-d 'v=2.0' \
-d 'bigbag_waybill_request=null'
# -*- coding: utf-8 -*-
import top.api
req=top.api.CainiaoGlobalImPickupBigbagWaybillInfoRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.bigbag_waybill_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,"cainiao.global.im.pickup.bigbag.waybill.info");
add_param(pRequest,"bigbag_waybill_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('cainiao.global.im.pickup.bigbag.waybill.info', {
'bigbag_waybill_request':'数据结构JSON示例'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})