TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
IndustryClothYcSyncAuditOperationRequest req = new IndustryClothYcSyncAuditOperationRequest();
IndustryClothYcSyncAuditOperationRequest.SyncAuditOperationRequest obj1 = new IndustryClothYcSyncAuditOperationRequest.SyncAuditOperationRequest();
obj1.setTaobaoApplyId("TYC10000001");
obj1.setOuterApplyId("YC10000001");
obj1.setOperateType("xxxxx");
obj1.setOperatorName("张三");
obj1.setOperatorPhone("13956781234");
obj1.setRemark("非原创");
obj1.setFileUrls("非原创");
obj1.setConfirmedProductName("xxxxx牛仔裤");
IndustryClothYcSyncAuditOperationRequest.PreAuditSubmitInfo obj2 = new IndustryClothYcSyncAuditOperationRequest.PreAuditSubmitInfo();
obj2.setInstitutionName("xxxx机构");
obj2.setPreAuditNumber("xxx");
obj2.setAuditorName("小张");
obj2.setAuditorPhone("13256784321");
obj1.setPreAuditSubmitInfo(obj2);
IndustryClothYcSyncAuditOperationRequest.CertSubmitInfo obj3 = new IndustryClothYcSyncAuditOperationRequest.CertSubmitInfo();
obj3.setApplyNumber("xxxxxxx");
obj3.setProductName("xxx牛仔裤");
obj3.setApplyTime("2026-01-01 12:34:56");
obj1.setCertSubmitInfo(obj3);
obj1.setAuthNo("xxxxxxx");
obj1.setRightNo("xxxx");
obj1.setTpAppKey("1992829292");
obj1.setIsvId("12222");
obj1.setRequestId("12222");
obj1.setApiCode("132ss");
obj1.setSeqId("1333");
obj1.setApiSourceIp("1222");
req.setSyncAuditOperationRequest(obj1);
IndustryClothYcSyncAuditOperationResponse rsp = client.execute(req);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
IndustryClothYcSyncAuditOperationRequest req = new IndustryClothYcSyncAuditOperationRequest();
IndustryClothYcSyncAuditOperationRequest.SyncAuditOperationRequestDomain obj1 = new IndustryClothYcSyncAuditOperationRequest.SyncAuditOperationRequestDomain();
obj1.TaobaoApplyId = "TYC10000001";
obj1.OuterApplyId = "YC10000001";
obj1.OperateType = "xxxxx";
obj1.OperatorName = "张三";
obj1.OperatorPhone = "13956781234";
obj1.Remark = "非原创";
obj1.FileUrls = "非原创";
obj1.ConfirmedProductName = "xxxxx牛仔裤";
IndustryClothYcSyncAuditOperationRequest.PreAuditSubmitInfoDomain obj2 = new IndustryClothYcSyncAuditOperationRequest.PreAuditSubmitInfoDomain();
obj2.InstitutionName = "xxxx机构";
obj2.PreAuditNumber = "xxx";
obj2.AuditorName = "小张";
obj2.AuditorPhone = "13256784321";
obj1.PreAuditSubmitInfo= obj2;
IndustryClothYcSyncAuditOperationRequest.CertSubmitInfoDomain obj3 = new IndustryClothYcSyncAuditOperationRequest.CertSubmitInfoDomain();
obj3.ApplyNumber = "xxxxxxx";
obj3.ProductName = "xxx牛仔裤";
obj3.ApplyTime = "2026-01-01 12:34:56";
obj1.CertSubmitInfo= obj3;
obj1.AuthNo = "xxxxxxx";
obj1.RightNo = "xxxx";
obj1.TpAppKey = "1992829292";
obj1.IsvId = "12222";
obj1.RequestId = "12222";
obj1.ApiCode = "132ss";
obj1.SeqId = "1333";
obj1.ApiSourceIp = "1222";
req.SyncAuditOperationRequest_ = obj1;
IndustryClothYcSyncAuditOperationResponse rsp = client.Execute(req);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new IndustryClothYcSyncAuditOperationRequest;
$sync_audit_operation_request = new SyncAuditOperationRequest;
$sync_audit_operation_request->taobao_apply_id="TYC10000001";
$sync_audit_operation_request->outer_apply_id="YC10000001";
$sync_audit_operation_request->operate_type="xxxxx";
$sync_audit_operation_request->operator_name="张三";
$sync_audit_operation_request->operator_phone="13956781234";
$sync_audit_operation_request->remark="非原创";
$sync_audit_operation_request->file_urls="非原创";
$sync_audit_operation_request->confirmed_product_name="xxxxx牛仔裤";
$pre_audit_submit_info = new PreAuditSubmitInfo;
$pre_audit_submit_info->institution_name="xxxx机构";
$pre_audit_submit_info->pre_audit_number="xxx";
$pre_audit_submit_info->auditor_name="小张";
$pre_audit_submit_info->auditor_phone="13256784321";
$sync_audit_operation_request->pre_audit_submit_info = $pre_audit_submit_info;
$cert_submit_info = new CertSubmitInfo;
$cert_submit_info->apply_number="xxxxxxx";
$cert_submit_info->product_name="xxx牛仔裤";
$cert_submit_info->apply_time="2026-01-01 12:34:56";
$sync_audit_operation_request->cert_submit_info = $cert_submit_info;
$sync_audit_operation_request->auth_no="xxxxxxx";
$sync_audit_operation_request->right_no="xxxx";
$sync_audit_operation_request->tp_app_key="1992829292";
$sync_audit_operation_request->isv_id="12222";
$sync_audit_operation_request->request_id="12222";
$sync_audit_operation_request->api_code="132ss";
$sync_audit_operation_request->seq_id="1333";
$sync_audit_operation_request->api_source_ip="1222";
$req->setSyncAuditOperationRequest(json_encode($sync_audit_operation_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=taobao.industry.cloth.yc.sync.audit.operation' \
-d 'partner_id=apidoc' \
-d 'sign=7A26B8AAB003537649B5854E285A1DAC' \
-d 'sign_method=hmac' \
-d 'timestamp=2026-04-04+13%3A20%3A18' \
-d 'v=2.0' \
-d 'sync_audit_operation_request=null'
# -*- coding: utf-8 -*-
import top.api
req=top.api.IndustryClothYcSyncAuditOperationRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.sync_audit_operation_request=""
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.industry.cloth.yc.sync.audit.operation");
add_param(pRequest,"sync_audit_operation_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('taobao.industry.cloth.yc.sync.audit.operation', {
'sync_audit_operation_request':'数据结构JSON示例'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})