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

# 绑定真人素材认证结果

> 把成功的真人素材认证结果绑定到 TokenLab 素材组。

传入认证会话或 TokenLab 回调中的 `session_id` 和 `verification_token`。TokenLab 会校验会话属于同一组织、未过期，并且与认证时记录的素材服务一致。

响应只返回 TokenLab 的 `group_id`。创建 `liveness_face` 素材时使用这个 `group_id`。

## 用例请求

```bash theme={null}
curl https://api.tokenlab.sh/v1/videos/assets/visual-validation-results \
  -H "Authorization: Bearer $TOKENLAB_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"session_id":"svv_abc123","verification_token":"svvt_def456","group_name":"Creator A"}'
```

## 用例响应

```json theme={null}
{
  "object": "seedance.visual_validation_result",
  "group_id": "seedance_group_real_123",
  "material_group": {
    "id": "seedance_group_real_123",
    "library_type": "liveness_face",
    "status": "ACTIVE",
    "group_name": "Creator A"
  }
}
```
