> ## Documentation Index
> Fetch the complete documentation index at: https://docs-payment-merchant.keysecure.io/llms.txt
> Use this file to discover all available pages before exploring further.

# 模拟 KYC 审核

模拟一次 **KYC 审核**，用于测试 KYC 审核结果通知。

<Note>
  * 仅支持 **POST**，请求体为 JSON 对象
  * **不使用** `Api-Key` / `Access-Token`
  * 目前仅支持 **香港卡 BIN**
</Note>

## 请求头

<ParamField header="Content-Type" type="string" required default="application/json">
  固定为 `application/json; charset=utf-8`
</ParamField>

## 请求体

<ParamField body="doc_no" type="string" required>
  Sumsub 证件号
</ParamField>

<ParamField body="audit_flag" type="string" required>
  审核结果：`0` 通过，`1` 拒绝
</ParamField>

## 返回参数

<ResponseField name="code" type="number">
  响应状态码，`0` 表示成功；失败时与 HTTP 状态码一致（如 `400` / `500`）
</ResponseField>

<ResponseField name="msg" type="string">
  响应消息。成功为 `Success`，失败为具体原因（无 `data` 字段）
</ResponseField>

<RequestExample>
  ```bash Request theme={null}
  curl --request POST \
    --url https://sandbox-openplatform.keysecure.io/open-api/v1/simulate/external_api/simulate_tevau_kyc \
    --header 'Content-Type: application/json' \
    --data '{
      "doc_no": "YOUR_DOC_NO",
      "audit_flag": "0"
    }'
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "code": 0,
    "msg": "Success"
  }
  ```
</ResponseExample>
