Skip to main content
POST
/
volc
/
asset
/
UpdateAsset
Update Asset
curl --request POST \
  --url https://www.anyfast.ai/volc/asset/UpdateAsset \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "model": "volc-asset",
  "Id": "asset-20260528140922-d9646",
  "Name": "updated-character-reference",
  "GroupId": "group-20260320141746-zsf6b"
}
'
{
  "Id": "asset-20260528140922-d9646",
  "Name": "updated-character-reference",
  "GroupId": "group-20260320141746-zsf6b",
  "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 ID to update.

Example:

"asset-20260528140922-d9646"

model
string

Model name. Default: volc-asset.

Example:

"volc-asset"

Name
string

New asset name.

Example:

"updated-character-reference"

GroupId
string

Target asset group ID.

Example:

"group-20260320141746-zsf6b"

Response

Asset updated

Id
string

Asset ID.

Example:

"asset-20260528140922-d9646"

Name
string

Updated asset name.

Example:

"updated-character-reference"

GroupId
string

Asset group ID.

Example:

"group-20260320141746-zsf6b"

UpdateTime
string

Update time.

Example:

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