TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlitripBtripFlightDistributionChangeNewpayRequest req = new AlitripBtripFlightDistributionChangeNewpayRequest();
AlitripBtripFlightDistributionChangeNewpayRequest.BtripFlightModifyPayRq obj1 = new AlitripBtripFlightDistributionChangeNewpayRequest.BtripFlightModifyPayRq();
obj1.setDisOrderId("5135145135");
obj1.setSubChannel("jianhang001");
obj1.setDisSubOrderId("154353535");
obj1.setTotalPayPrice(51000L);
obj1.setCorpPayPrice(50000L);
obj1.setPersonalPayPrice(1000L);
obj1.setExtra("{}");
req.setParamBtripFlightModifyPayRq(obj1);
AlitripBtripFlightDistributionChangeNewpayResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
AlitripBtripFlightDistributionChangeNewpayRequest req = new AlitripBtripFlightDistributionChangeNewpayRequest();
AlitripBtripFlightDistributionChangeNewpayRequest.BtripFlightModifyPayRqDomain obj1 = new AlitripBtripFlightDistributionChangeNewpayRequest.BtripFlightModifyPayRqDomain();
obj1.DisOrderId = "5135145135";
obj1.SubChannel = "jianhang001";
obj1.DisSubOrderId = "154353535";
obj1.TotalPayPrice = 51000L;
obj1.CorpPayPrice = 50000L;
obj1.PersonalPayPrice = 1000L;
obj1.Extra = "{}";
req.ParamBtripFlightModifyPayRq_ = obj1;
AlitripBtripFlightDistributionChangeNewpayResponse rsp = client.Execute(req, sessionKey);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new AlitripBtripFlightDistributionChangeNewpayRequest;
$param_btrip_flight_modify_pay_rq = new BtripFlightModifyPayRq;
$param_btrip_flight_modify_pay_rq->dis_order_id="5135145135";
$param_btrip_flight_modify_pay_rq->sub_channel="jianhang001";
$param_btrip_flight_modify_pay_rq->dis_sub_order_id="154353535";
$param_btrip_flight_modify_pay_rq->total_pay_price="51000";
$param_btrip_flight_modify_pay_rq->corp_pay_price="50000";
$param_btrip_flight_modify_pay_rq->personal_pay_price="1000";
$param_btrip_flight_modify_pay_rq->extra="{}";
$req->setParamBtripFlightModifyPayRq(json_encode($param_btrip_flight_modify_pay_rq));
$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=alitrip.btrip.flight.distribution.change.newpay' \
-d 'partner_id=apidoc' \
-d 'session=e2cf82ca-e6a1-46a1-839d-3359288b4e3d' \
-d 'sign=692CD042D1007D8CB532DF5FC595A0D6' \
-d 'sign_method=hmac' \
-d 'timestamp=2024-11-21+19%3A42%3A23' \
-d 'v=2.0' \
-d 'param_btrip_flight_modify_pay_rq=null'
# -*- coding: utf-8 -*-
import top.api
req=top.api.AlitripBtripFlightDistributionChangeNewpayRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.param_btrip_flight_modify_pay_rq="数据结构示例JSON格式"
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,"alitrip.btrip.flight.distribution.change.newpay");
add_param(pRequest,"param_btrip_flight_modify_pay_rq","数据结构JSON示例");
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('alitrip.btrip.flight.distribution.change.newpay', {
'param_btrip_flight_modify_pay_rq':'数据结构JSON示例'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})