/app/kyc/entity/submit


该接口用于提交完整的KYB(Know Your Business)申请。当企业已完成所有必要信息的填写和文件上传后,调用此接口将申请正式提交至审核系统。提交成功后,企业的KYB申请将进入审核流程,所有信息将不可再修改


请求参数说明

参数名类型必填说明
uidstring用户ID,用于标识当前提交申请的企业用户

前置检查项

提交前系统会自动验证以下信息的完整性和合规性:

1. 企业基本信息

2. 企业文档

3. 代表人信息(has_representative)

4. 实际受益人信息(has_owner)

5. 调查问卷(questionnaire)

如信息未填写完成,会返回如下:

{
    "request_id": "b701434db60dd08e74291a9e1853590f",
    "status": "error",
    "code": "303100",
    "message": "The kyc cannot be submitted.",
    "errors": [
        {
            "uncompleted_fields": [
                "has_representative", // 代表人信息
                "has_owner",  // 实际受益人信息
                "questionnaire", //调查问卷
                "source_of_fund",
                "customer_countries",
                "certification_file",
                "agreement_file",
                "organization_file",
                "address_file",
                "authority_file",
                "fund_file",
                "bank_country"
            ]
        }
    ],
    "metadata": {}
}
Responses

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