TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaDamaiCalloutPerformListExportRequest req = new AlibabaDamaiCalloutPerformListExportRequest();
AlibabaDamaiCalloutPerformListExportRequest.CallPerformQueryRequest obj1 = new AlibabaDamaiCalloutPerformListExportRequest.CallPerformQueryRequest();
obj1.setOrderCountType("\"high\"");
obj1.setPerformId("\"12345\"");
obj1.setExecutionStatus("\"1\"");
obj1.setPageSize(20L);
obj1.setEventType("\"1\"");
obj1.setBeginTime("\"2026-01-01 00:00:00\"");
obj1.setEndTime("\"2026-01-01 00:00:00\"");
obj1.setSort(0L);
obj1.setCurrentPage(1L);
obj1.setProjectId("1327787");
req.setCallPerformQueryRequest(obj1);
AlibabaDamaiCalloutPerformListExportResponse rsp = client.execute(req);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
AlibabaDamaiCalloutPerformListExportRequest req = new AlibabaDamaiCalloutPerformListExportRequest();
AlibabaDamaiCalloutPerformListExportRequest.CallPerformQueryRequestDomain obj1 = new AlibabaDamaiCalloutPerformListExportRequest.CallPerformQueryRequestDomain();
obj1.OrderCountType = "\"high\"";
obj1.PerformId = "\"12345\"";
obj1.ExecutionStatus = "\"1\"";
obj1.PageSize = 20L;
obj1.EventType = "\"1\"";
obj1.BeginTime = "\"2026-01-01 00:00:00\"";
obj1.EndTime = "\"2026-01-01 00:00:00\"";
obj1.Sort = 0L;
obj1.CurrentPage = 1L;
obj1.ProjectId = "1327787";
req.CallPerformQueryRequest_ = obj1;
AlibabaDamaiCalloutPerformListExportResponse rsp = client.Execute(req);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new AlibabaDamaiCalloutPerformListExportRequest;
$call_perform_query_request = new CallPerformQueryRequest;
$call_perform_query_request->order_count_type="\"high\"";
$call_perform_query_request->perform_id="\"12345\"";
$call_perform_query_request->execution_status="\"1\"";
$call_perform_query_request->page_size="20";
$call_perform_query_request->event_type="\"1\"";
$call_perform_query_request->begin_time="\"2026-01-01 00:00:00\"";
$call_perform_query_request->end_time="\"2026-01-01 00:00:00\"";
$call_perform_query_request->sort="0";
$call_perform_query_request->current_page="1";
$call_perform_query_request->project_id="1327787";
$req->setCallPerformQueryRequest(json_encode($call_perform_query_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=alibaba.damai.callout.perform.list.export' \
-d 'partner_id=apidoc' \
-d 'sign=E905AFA9887390252B8E53E9AB9EBEE4' \
-d 'sign_method=hmac' \
-d 'timestamp=2026-08-24+02%3A43%3A01' \
-d 'v=2.0' \
-d 'call_perform_query_request=null'
# -*- coding: utf-8 -*-
import top.api
req=top.api.AlibabaDamaiCalloutPerformListExportRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.call_perform_query_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,"alibaba.damai.callout.perform.list.export");
add_param(pRequest,"call_perform_query_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('alibaba.damai.callout.perform.list.export', {
'call_perform_query_request':'数据结构JSON示例'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})