TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
CcoSelfCoordinateHandleFinishRequest req = new CcoSelfCoordinateHandleFinishRequest();
req.setCaseId(2505032790789480L);
req.setOperator("\"天猫国际小二\"");
req.setReplyDataString("{\"canRefund\":\"同意退款\",\"compensationFee\":\"100\"}");
CcoSelfCoordinateHandleFinishResponse rsp = client.execute(req);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
CcoSelfCoordinateHandleFinishRequest req = new CcoSelfCoordinateHandleFinishRequest();
req.CaseId = 2505032790789480L;
req.Operator = "\"天猫国际小二\"";
req.ReplyData = "{\"canRefund\":\"同意退款\",\"compensationFee\":\"100\"}";
CcoSelfCoordinateHandleFinishResponse rsp = client.Execute(req);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new CcoSelfCoordinateHandleFinishRequest;
$req->setCaseId("2505032790789480");
$req->setOperator("\"天猫国际小二\"");
$req->setReplyData("{\"canRefund\":\"同意退款\",\"compensationFee\":\"100\"}");
$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=taobao.cco.self.coordinate.handle.finish' \
-d 'partner_id=apidoc' \
-d 'sign=6581A37EF9653DF415F58073546C028B' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-04-25+16%3A51%3A04' \
-d 'v=2.0' \
-d 'case_id=2505032790789480' \
-d 'operator=%5C%22%E5%A4%A9%E7%8C%AB%E5%9B%BD%E9%99%85%E5%B0%8F%E4%BA%8C%5C%22' \
-d 'reply_data=%7B%5C%22canRefund%5C%22%3A%5C%22%E5%90%8C%E6%84%8F%E9%80%80%E6%AC%BE%5C%22%2C%5C%22compensationFee%5C%22%3A%5C%22100%5C%22%7D'
# -*- coding: utf-8 -*-
import top.api
req=top.api.CcoSelfCoordinateHandleFinishRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.case_id=2505032790789480
req.operator="\"天猫国际小二\""
req.reply_data="{\"canRefund\":\"同意退款\",\"compensationFee\":\"100\"}"
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,"taobao.cco.self.coordinate.handle.finish");
add_param(pRequest,"case_id","2505032790789480");
add_param(pRequest,"operator","\"天猫国际小二\"");
add_param(pRequest,"reply_data","{\"canRefund\":\"同意退款\",\"compensationFee\":\"100\"}");
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('taobao.cco.self.coordinate.handle.finish', {
'case_id':'2505032790789480',
'operator':'\"天猫国际小二\"',
'reply_data':'{\"canRefund\":\"同意退款\",\"compensationFee\":\"100\"}'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})