TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaSscHomedecorationWorkcardLogisticsUpdateRequest req = new AlibabaSscHomedecorationWorkcardLogisticsUpdateRequest();
req.setWorkcardId(12345L);
req.setLogisticsAction("sign");
req.setAttributesString("{\"rejectCode\":\"0\"}");
req.setWorkerId(123L);
AlibabaSscHomedecorationWorkcardLogisticsUpdateResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
AlibabaSscHomedecorationWorkcardLogisticsUpdateRequest req = new AlibabaSscHomedecorationWorkcardLogisticsUpdateRequest();
req.WorkcardId = 12345L;
req.LogisticsAction = "sign";
req.Attributes = "{\"rejectCode\":\"0\"}";
req.WorkerId = 123L;
AlibabaSscHomedecorationWorkcardLogisticsUpdateResponse rsp = client.Execute(req, sessionKey);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new AlibabaSscHomedecorationWorkcardLogisticsUpdateRequest;
$req->setWorkcardId("12345");
$req->setLogisticsAction("sign");
$req->setAttributes("{\"rejectCode\":\"0\"}");
$req->setWorkerId("123");
$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=alibaba.ssc.homedecoration.workcard.logistics.update' \
-d 'partner_id=apidoc' \
-d 'session=b48e9b3a-f9e7-43a8-9ad4-8a638b9e58ae' \
-d 'sign=6B8D3953C5D82DA104EFA56DCD70E50D' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-09-15+16%3A19%3A20' \
-d 'v=2.0' \
-d 'attributes=%7B%5C%22rejectCode%5C%22%3A%5C%220%5C%22%7D' \
-d 'logistics_action=sign' \
-d 'workcard_id=12345' \
-d 'worker_id=123'
# -*- coding: utf-8 -*-
import top.api
req=top.api.AlibabaSscHomedecorationWorkcardLogisticsUpdateRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.workcard_id=12345
req.logistics_action="sign"
req.attributes="{\"rejectCode\":\"0\"}"
req.worker_id=123
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,"alibaba.ssc.homedecoration.workcard.logistics.update");
add_param(pRequest,"workcard_id","12345");
add_param(pRequest,"logistics_action","sign");
add_param(pRequest,"attributes","{\"rejectCode\":\"0\"}");
add_param(pRequest,"worker_id","123");
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('alibaba.ssc.homedecoration.workcard.logistics.update', {
'workcard_id':'12345',
'logistics_action':'sign',
'attributes':'{\"rejectCode\":\"0\"}',
'worker_id':'123'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})