TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlitripCheckinMerchantResultRefundRequest req = new AlitripCheckinMerchantResultRefundRequest();
AlitripCheckinMerchantResultRefundRequest.WebHookRefundRequest obj1 = new AlitripCheckinMerchantResultRefundRequest.WebHookRefundRequest();
obj1.setFlightInfo("json");
obj1.setPassengers("json");
obj1.setExternalOrderId("12345");
obj1.setCallerId("yuetu");
req.setWebHookRefundRequest(obj1);
AlitripCheckinMerchantResultRefundResponse rsp = client.execute(req);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
AlitripCheckinMerchantResultRefundRequest req = new AlitripCheckinMerchantResultRefundRequest();
AlitripCheckinMerchantResultRefundRequest.WebHookRefundRequestDomain obj1 = new AlitripCheckinMerchantResultRefundRequest.WebHookRefundRequestDomain();
obj1.FlightInfo = "json";
obj1.Passengers = "json";
obj1.ExternalOrderId = "12345";
obj1.CallerId = "yuetu";
req.WebHookRefundRequest_ = obj1;
AlitripCheckinMerchantResultRefundResponse rsp = client.Execute(req);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new AlitripCheckinMerchantResultRefundRequest;
$web_hook_refund_request = new WebHookRefundRequest;
$web_hook_refund_request->flight_info="json";
$web_hook_refund_request->passengers="json";
$web_hook_refund_request->external_order_id="12345";
$web_hook_refund_request->caller_id="yuetu";
$req->setWebHookRefundRequest(json_encode($web_hook_refund_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=alitrip.checkin.merchant.result.refund' \
-d 'partner_id=apidoc' \
-d 'sign=B3982C17B417D5E783CC23D7D20E3193' \
-d 'sign_method=hmac' \
-d 'timestamp=2026-05-28+03%3A58%3A22' \
-d 'v=2.0' \
-d 'web_hook_refund_request=null'
# -*- coding: utf-8 -*-
import top.api
req=top.api.AlitripCheckinMerchantResultRefundRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.web_hook_refund_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,"alitrip.checkin.merchant.result.refund");
add_param(pRequest,"web_hook_refund_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',
'url': 'http://gw.api.taobao.com/router/rest'
});
client.execute('alitrip.checkin.merchant.result.refund', {
'web_hook_refund_request':'数据结构JSON示例'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})