Skip to main content

Delete Asset Group

DELETE /api/volc-user/asset-groups

Delete a specific asset group. Deleting an asset group will also delete all assets within that group.

Authentication

User console API requiring logged-in user identity (session Cookie, or Authorization: <access_token>, token obtained via Generate Access Token). This token is different from the sk- keys used for model invocation.

⚠️ Deleting an asset group will also delete all assets within that group. If the asset group does not exist or is not accessible, the API will return a failure.

Request Parameters​

NameTypeRequiredDescription
idstringRequiredAsset group ID

Request Example​

{
"body": {
"id": "group-7f2b8d9c"
}
}

Response Fields (200)​

NameTypeDescription
successbooleanSuccess flag
messagestringMessage
dataobjectResponse data
data.idstringAsset group ID

Response Example​

{
"success": true,
"message": "",
"data": {
"id": "group-7f2b8d9c"
}
}