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

# Update Material Asset Group

> Updates a Seedance material group owned by the current organization.

Update the display name, description, or metadata for a material group. For managed real-person groups, the verified person mapping remains unchanged.

## Example Request

```bash theme={null}
curl https://api.aisonar.dev/v1/videos/assets/groups/group-20260720123456-vrt01 \
  -X PUT \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"group_name":"Updated references","description":"Images approved for summer videos"}'
```

## Example Response

```json theme={null}
{
  "id": "group-20260720123456-vrt01",
  "object": "seedance.material_asset_group",
  "library_type": "aigc_avatar",
  "group_name": "Updated references",
  "description": "Images approved for summer videos",
  "status": "ACTIVE",
  "metadata": null,
  "created_at": 1782998400000
}
```
