/app/kyc/entity/documents

该接口用于企业KYB流程中的文档资料上传与提交。通过上传企业相关的各类证明文件(如注册证书、协议文件、组织文件、地址证明、授权文件、资金来源证明及政策文件等),完成企业身份验证和合规审查所需的文档材料收集。

字段说明

基本信息字段

字段名类型必填说明数据来源
uidstring用户ID
source_of_fundstring资金来源说明,如:Business Revenue(营业收入)包含sources和detail ,sources读取字典接口source_of_funds
regulated_financial_institutionstring是否受监管的金融机构,可选值:Yes/No
customer_countriesarray客户所在国家/地区列表,如:["US", "CA", "GB", "AU"]

文档字段说明

首先调用file接口,上传二进制文件,返回如下上传的文件信息:

字段名类型说明
file_hashstring文件哈希值,用于文件唯一标识和校验

文档类别说明

字段名文档类别说明数据来源
institution_doc_certification公司登记证和商业登记证企业注册证书/营业执照等
institution_doc_agreement当前的有限合伙协议、运营协议、章程、公司注册证书或同等文件。股东协议/合伙协议等
institution_doc_organization公司股权架构图公司章程/组织大纲等
institution_doc_residence地址证明地址证明/水电账单等
file_category地址证明文档类型证明类型,包含枚举:'utility_bill', 'bank_statement', 'credit_card_statement', 'lease_or_rental_agreement', 'mortgage_statement', 'mobile_bill'
institution_doc_authority账户开立董事会决议董事会决议/授权委托书等
institution_doc_fund资金来源证明银行对账单/资金证明等
institution_doc_policy政策文件BSA/AML反洗钱政策文件,如果是受监管的金融机构(regulated_financial_institution==“”),需要提供BSA/AML 和制裁政策(Sanctions Policy)文件。

示例

{
  "uid": "123456",
  "source_of_fund": {
    "sources": [
      "sales_revenu",
      "property_asset_sale"
    ],
    "detail": "1111111111"
  },
  "regulated_financial_institution": "No",
  "customer_countries": [
    "US",
    "CA",
    "GB",
    "AU"
  ],
  "institution_doc_certification": [
    {
      "file_hash": "70580af1292c0d4c43bbc408798c4a36"
    }
  ],
  "institution_doc_agreement": [
    {
      "file_hash": "70580af1292c0d4c43bbc408798c4a36"
    }
  ],
  "institution_doc_organization": [
    {
      "file_hash": "70580af1292c0d4c43bbc408798c4a36"
    }
  ],
  "institution_doc_residence": [
    {
      "file_hash": "70580af1292c0d4c43bbc408798c4a36",
      "file_category": "utility_bill"
    }
  ],
  "institution_doc_authority": [
    {
      "file_hash": "70580af1292c0d4c43bbc408798c4a36"
    }
  ],
  "institution_doc_fund": [
    {
      "file_hash": "cf6802c1439966693b1d5db205f5b7fc"
    }
  ],
  "institution_doc_policy": [
    {
      "file_hash": "70580af1292c0d4c43bbc408798c4a36"
    }
  ]
}
Responses

Language
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json