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

# Delete asset group (DeleteAssetGroup)

> DeleteAssetGroup — POST /api/v3/seedance

## Introduction

Delete a specified asset group and **cascade delete** all assets within it. This cannot be undone.

<Warning>
  Live person asset groups (`LivenessFace`) have additional restrictions: only groups whose authorization has expired or was denied can be deleted; groups with active authorization, authorization not yet started, or approved authorization cannot be deleted. Virtual asset groups (`AIGC`) have no such restriction.
</Warning>

## Authentication

<ParamField header="Authorization" type="string" required>
  Bearer Token, e.g. `Bearer sk-your_token_key`
</ParamField>

## Request parameters

<ParamField body="Id" type="string" required>
  Asset group ID
</ParamField>

<ParamField body="ProjectName" type="string" default="default">
  Project name
</ParamField>

## Request example

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

## Response example

```json theme={null}
{
  "ResponseMetadata": {"Action": "DeleteAssetGroup"},
  "Result": {}
}
```
