TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
MiniappExtDeliverySellChannelConfigSyncRequest req = new MiniappExtDeliverySellChannelConfigSyncRequest();
MiniappExtDeliverySellChannelConfigSyncRequest.SellerChannelConfigDTO obj1 = new MiniappExtDeliverySellChannelConfigSyncRequest.SellerChannelConfigDTO();
obj1.setMiniappId(300000000234234L);
obj1.setExtProperties("{}");
obj1.setChannel("1");
obj1.setConfigStatus(0L);
req.setSellerChannelConfig(obj1);
MiniappExtDeliverySellChannelConfigSyncResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());
                 
                
                    ITopClient client = new DefaultTopClient(url, appkey, secret);
MiniappExtDeliverySellChannelConfigSyncRequest req = new MiniappExtDeliverySellChannelConfigSyncRequest();
MiniappExtDeliverySellChannelConfigSyncRequest.SellerChannelConfigDTODomain obj1 = new MiniappExtDeliverySellChannelConfigSyncRequest.SellerChannelConfigDTODomain();
obj1.MiniappId = 300000000234234L;
obj1.ExtProperties = "{}";
obj1.Channel = "1";
obj1.ConfigStatus = 0L;
req.SellerChannelConfig_ = obj1;
MiniappExtDeliverySellChannelConfigSyncResponse rsp = client.Execute(req, sessionKey);
Console.WriteLine(rsp.Body);
                 
                
                    $c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new MiniappExtDeliverySellChannelConfigSyncRequest;
$seller_channel_config = new SellerChannelConfigDTO;
$seller_channel_config->miniapp_id="300000000234234";
$seller_channel_config->ext_properties="{}";
$seller_channel_config->channel="1";
$seller_channel_config->config_status="0";
$req->setSellerChannelConfig(json_encode($seller_channel_config));
$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=taobao.miniapp.ext.delivery.sell.channel.config.sync' \
-d 'partner_id=apidoc' \
-d 'session=b4a65374-f35a-4aa9-a36f-4428dba59ddd' \
-d 'sign=B171ADFFDC49E5D62E6DDECBB7B35EBF' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-10-31+13%3A10%3A54' \
-d 'v=2.0' \
-d 'seller_channel_config=null'
                 
                
                    
                        # -*- coding: utf-8 -*-
import top.api
req=top.api.MiniappExtDeliverySellChannelConfigSyncRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.seller_channel_config="数据结构示例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,"taobao.miniapp.ext.delivery.sell.channel.config.sync");
add_param(pRequest,"seller_channel_config","数据结构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('taobao.miniapp.ext.delivery.sell.channel.config.sync', {
	'seller_channel_config':'数据结构JSON示例'
}, function(error, response) {
	if (!error) console.log(response);
	else console.log(error);
})