Appearance
下载审核链接材料
GET
/openapi/v3/audit-links/:id/materials
下载指定审核链接下已上传的材料。接口直接返回一个 ZIP 压缩包(Content-Type: application/zip),而非 JSON。
Path 参数
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| id | string | 是 | 审核链接 ID |
Query 参数
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| material_type | string | 是 | 需下载的材料类型,多个用英文逗号分隔,如 business_license,authorization_letter |
| password | string | 否 | ZIP 压缩包打开密码(如设置) |
常用的材料类型取值:id_person_img、id_info_img、business_license、authorization_letter、authorization_form、verification_form、face_snapshot、other;法人代表认证还可能包含 legal_id_person_img、legal_id_info_img、legal_verification_form。仅会返回该审核链接下实际存在的材料。
响应说明
成功时响应体为 ZIP 二进制流,并带有 Content-Disposition: attachment 头。请求失败时仍返回标准 JSON 错误结构。
bash
curl -G 'https://api.certcloud.cn/openapi/v3/audit-links/al_7Kd9Qm2x/materials' \
-H 'X-CC-Auth-Key: your-auth-key' \
-H 'X-CC-Key-ID: your-key-id' \
--data-urlencode 'material_type=business_license,authorization_letter' \
-o materials.zip