post
https://sandboxapi.legendtrading.com/v2/app/kyc/entity/documents
该接口用于企业KYB流程中的文档资料上传与提交。通过上传企业相关的各类证明文件(如注册证书、协议文件、组织文件、地址证明、授权文件、资金来源证明及政策文件等),完成企业身份验证和合规审查所需的文档材料收集。
字段说明
基本信息字段
| 字段名 | 类型 | 必填 | 说明 | 数据来源 |
|---|---|---|---|---|
| uid | string | 是 | 用户ID | |
| source_of_fund | string | 是 | 资金来源说明,如:Business Revenue(营业收入) | 包含sources和detail ,sources读取字典接口的source_of_funds |
| regulated_financial_institution | string | 是 | 是否受监管的金融机构,可选值:Yes/No | |
| customer_countries | array | 是 | 客户所在国家/地区列表,如:["US", "CA", "GB", "AU"] |
文档字段说明
首先调用file接口,上传二进制文件,返回如下上传的文件信息:
| 字段名 | 类型 | 说明 |
|---|---|---|
| file_hash | string | 文件哈希值,用于文件唯一标识和校验 |
文档类别说明
| 字段名 | 文档类别 | 说明 | 数据来源 |
|---|---|---|---|
| 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"
}
]
}