Z Zise Developers

KYC 结论(level + 最小字段,无影像、无档案)

GET /v1/kyc scope: kyc:read
代会员调用 · 必带 x-on-behalf-of

代会员调用,必带 x-on-behalf-of;缺了回

member_context_required(400),不会回落到任何默认会员。

只给结论。档案原件与影像绝不出平台,也永不下发「在哪个商户做的

KYC」(那会泄露跨商户信息)。

nationalityupdated_at 只在 L1 已通过时有值,其余情况是**空串

而不是 null**。status 只有两档:approved(level ≥ 1)与 none

它是 level 的派生值,不是一条独立的审核状态 —— 「审核中」「已驳回」

在这里都显示 none,要看进度走 GET /v1/kyc/supplements 与你自己的

引导流程。

各业务线要求几级见 GET /v1/kyc/requirements

字段类型必填说明
x-on-behalf-of string 必填 代哪个会员调用。external_member_id 或我方发出去的 mem_<uuid> 都认。「不存在」「属于别的商户」「已停用」三种同一个 404

响应

200OK
{
  "level": 1,
  "status": "approved",
  "nationality": "CN",
  "updated_at": "2026-08-10T04:12:33.100Z"
}
400member_context_required 没带 x-on-behalf-of
404member_not_found(含「属于别的商户」与「已停用」)
请求
curl -X GET 'https://api.zise.com/v1/kyc' \
  -H 'x-auth-token: Bearer $TOKEN' \
  -H 'x-on-behalf-of: $MEMBER_ID'
const res = await fetch("https://api.zise.com/v1/kyc", {
  method: "GET",
  headers: {
    "x-auth-token": "Bearer $TOKEN",
    "x-on-behalf-of": "$MEMBER_ID",
  },
});
// 金额按字符串读,别让它变成 number
const data = await res.json();
import requests

res = requests.get(
    "https://api.zise.com/v1/kyc",
    headers={
        "x-auth-token": "Bearer $TOKEN",
        "x-on-behalf-of": "$MEMBER_ID",
    },
)
# 金额用 Decimal(str(...)),不要 float
data = res.json()
req, _ := http.NewRequest("GET", "https://api.zise.com/v1/kyc",
    nil)
req.Header.Set("x-auth-token", "Bearer $TOKEN")
req.Header.Set("x-on-behalf-of", "$MEMBER_ID")
res, err := http.DefaultClient.Do(req)
// 金额字段用 string 接,不要 float64
HttpRequest req = HttpRequest.newBuilder()
    .uri(URI.create("https://api.zise.com/v1/kyc"))
    .header("x-auth-token", "Bearer $TOKEN")
    .header("x-on-behalf-of", "$MEMBER_ID")
    .method("GET", HttpRequest.BodyPublishers.noBody())
    .build();
// 金额字段用 String / BigDecimal,不要 double
$ch = curl_init('https://api.zise.com/v1/kyc');
curl_setopt_array($ch, [
  CURLOPT_CUSTOMREQUEST => 'GET',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_HTTPHEADER => [
    'x-auth-token: Bearer $TOKEN',
    'x-on-behalf-of: $MEMBER_ID',
  ],
]);
$res = curl_exec($ch);
// 金额用 bcmath / 字符串,不要 floatval
200
{
  "level": 1,
  "status": "approved",
  "nationality": "CN",
  "updated_at": "2026-08-10T04:12:33.100Z"
}