Skip to main content
POST
/
volc
/
asset
/
CreateAssetGroup
Create Asset Group
curl --request POST \
  --url https://www.anyfast.ai/volc/asset/CreateAssetGroup \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "Name": "my-project-assets",
  "model": "volc-asset"
}
'
{
  "Id": "group-20260320120601-hsw4s"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
Name
string
required

Asset group name.

Example:

"my-project-assets"

model
string
default:volc-asset

Model name for billing. Default: volc-asset.

Example:

"volc-asset"

Response

Asset group created successfully

Id
string

Asset group ID.

Example:

"group-20260320120601-hsw4s"