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

# 검증 결과 조회 및 자산 그룹 생성

> GetVisualValidateResult — BytedToken으로 GroupId 교환

## 소개

`CreateVisualValidateSession`에서 반환된 `BytedToken`으로 검증 결과를 조회합니다. 호출 성공은 실인물 검증이 통과했음을 의미하며, `GroupType = LivenessFace` 자산 그룹이 동시에 생성됩니다.

<Warning>
  응답 역시 **평면 구조**이며 `{ResponseMetadata, Result}` 봉투가 아닙니다.
</Warning>

이 인터페이스에서도 할당량 확인을 수행합니다(상한 초과 시 `403 QuotaExceeded`) — 이는 두 번째 관문이며, 주요 차단 지점은 `CreateVisualValidateSession`입니다.

## 인증

<ParamField header="Authorization" type="string" required>
  Bearer Token, 예: `Bearer sk-your_token_key`
</ParamField>

## 요청 매개변수

<ParamField body="BytedToken" type="string" required>
  `CreateVisualValidateSession` 응답의 `BytedToken`
</ParamField>

## 요청 예제

```bash theme={null}
curl -X POST "https://api.gravitex.ai/api/v3/seedance?Action=GetVisualValidateResult&Version=2024-01-01" \
  -H "Authorization: Bearer sk-your_token_key" \
  -H "Content-Type: application/json" \
  -d '{"BytedToken": "202607..."}'
```

## 응답 예제

검증 통과:

```json theme={null}
{
  "GroupId": "group-20260710-face01"
}
```

`GroupId`를 받은 후 `AIGC` 자산 그룹과 동일하게 `CreateAsset` / `ListAssets` / `GetAsset` / `UpdateAsset` / `DeleteAsset` / `DeleteAssetGroup` 등 Action으로 자산을 관리할 수 있습니다.

검증이 아직 완료되지 않았거나 거부된 경우, 해당 오류 상태 코드와 오류 본문이 반환됩니다.
