Skip to main content
POST
/
volc
/
asset
/
UpdateAssetGroup
Update Asset Group
curl --request POST \
  --url https://www.anyfast.ai/volc/asset/UpdateAssetGroup \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "model": "volc-asset",
  "Id": "group-20260320141746-zsf6b",
  "Name": "updated-project-assets"
}
'
{
  "Id": "group-20260320141746-zsf6b",
  "Name": "updated-project-assets",
  "UpdateTime": "2026-05-28T06:09:31Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
Id
string
required

Asset group ID to update.

Example:

"group-20260320141746-zsf6b"

model
string

Model name. Default: volc-asset.

Example:

"volc-asset"

Name
string

New asset group name.

Example:

"updated-project-assets"

Response

Asset group updated

Id
string

Asset group ID.

Example:

"group-20260320141746-zsf6b"

Name
string

Updated asset group name.

Example:

"updated-project-assets"

UpdateTime
string

Update time.

Example:

"2026-05-28T06:09:31Z"