文档中心 > API类目 > 淘宝服饰

taobao.industry.cloth.yc.sync.audit.operation (同步审核操作)

同步审核操作

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
sync_audit_operation_request SyncAuditOperationRequest 可选 syncAuditOperationRequest
  • └ taobao_apply_id
  • String
  • 可选
  • TYC10000001
  • 淘宝申请ID
  • └ outer_apply_id
  • String
  • 可选
  • YC10000001
  • 外部申请ID
  • └ operate_type
  • String
  • 可选
  • xxxxx
  • 操作类型
  • └ operator_name
  • String
  • 可选
  • 张三
  • 操作人名称
  • └ operator_phone
  • String
  • 可选
  • 13956781234
  • 操作人联系方式
  • └ remark
  • String
  • 可选
  • 非原创
  • 备注,驳回原因或补充材料的说明
  • └ file_urls
  • String []
  • 可选
  • 非原创
  • 该操作的相关文件
  • └ confirmed_product_name
  • String
  • 可选
  • xxxxx牛仔裤
  • 确认后的产品名称
  • pre_audit_submit_info
  • PreAuditSubmitInfo
  • 可选
  • 预审提交的信息
  • └ institution_name
  • String
  • 可选
  • xxxx机构
  • 机构名称
  • └ pre_audit_number
  • String
  • 可选
  • xxx
  • 预审号
  • └ auditor_name
  • String
  • 可选
  • 小张
  • 审核人
  • └ auditor_phone
  • String
  • 可选
  • 13256784321
  • 审核人电话
  • cert_submit_info
  • CertSubmitInfo
  • 可选
  • 认证提交的信息
  • └ apply_number
  • String
  • 可选
  • xxxxxxx
  • 认证申请号
  • └ product_name
  • String
  • 可选
  • xxx牛仔裤
  • 产品名称
  • └ apply_time
  • String
  • 可选
  • 2026-01-01 12:34:56
  • 申请时间
  • └ auth_no
  • String
  • 可选
  • xxxxxxx
  • 授权序号
  • └ right_no
  • String
  • 可选
  • xxxx
  • 权利号
  • └ tp_app_key
  • String
  • 可选
  • 1992829292
  • appKey
  • └ isv_id
  • String
  • 可选
  • 12222
  • top平台的isvId
  • └ request_id
  • String
  • 可选
  • 12222
  • top平台请求ID
  • └ api_code
  • String
  • 可选
  • 132ss
  • api名称
  • └ seq_id
  • String
  • 可选
  • 1333
  • 外部请求序列号id
  • └ api_source_ip
  • String
  • 可选
  • 1222
  • 向top发起请求的客户端ip

响应参数

名称 类型 示例值 描述
top_result TopResult topResult
  • └ success
  • Boolean
  • true
  • 是否成功
  • └ code
  • Number
  • 401
  • 错误编码
  • └ msg
  • String
  • 授权异常
  • 错误信息
  • sync_audit_operation_response
  • SyncAuditOperationResponse
  • 响应结果
  • └ file_urls
  • String []
  • Top,Pub
  • 文件url列表

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
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());

响应示例

  • XML示例
  • JSON示例
<industry_cloth_yc_sync_audit_operation_response>
    <top_result>
        <success>true</success>
        <code>401</code>
        <msg>授权异常</msg>
        <sync_audit_operation_response>
            <file_urls>
                <string>Top</string>
                <string>Pub</string>
            </file_urls>
        </sync_audit_operation_response>
    </top_result>
</industry_cloth_yc_sync_audit_operation_response>

异常示例

  • XML示例
  • JSON示例
<error_response>
    <code>50</code>
    <msg>Remote service error</msg>
    <sub_code>isv.invalid-parameter</sub_code>
    <sub_msg>非法参数</sub_msg>
</error_response>

错误码解释

错误码 错误描述 解决方案

API工具

如何获得此API

FAQ

返回
顶部