> ## 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.

# Bind Real-Person Verification Result

> Binds a successful real-person material verification result to a TokenLab material group.

Bind the successful verification result and create the TokenLab real-person material group mapping. Use the `session_id` and `verification_token` from the verification session or from the TokenLab callback redirect.

TokenLab verifies that the session belongs to the same organization, has not expired, and is bound to the same material service used by the verification session. The response returns a TokenLab `group_id` only; use it when creating `liveness_face` material assets.

## Example Request

```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"}'
```

## Example Response

```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"
  }
}
```
