Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.xingchaoyiqing.com/llms.txt

Use this file to discover all available pages before exploring further.

Delete an asset from the Seedance 2.0 asset library when it is no longer needed. Deleted assets cannot be recovered, and their asset IDs can no longer be used in generation tasks. Base URL: https://zcbservice.aizfw.cn/kyyReactApiServer Endpoint: DELETE /kyyVideo2/asset/{assetId}
Deletion is permanent and cannot be undone. Verify that the asset is not referenced in any active or upcoming generation tasks before deleting. Deleting an asset that is still in use may cause those tasks to fail.

Path Parameters

assetId
string
required
The ID of the asset to delete.Example: asset-20260330142158-q75m8

Response Fields

code
string
Response status code returned as a string. "0" indicates the asset was successfully deleted; any other value indicates failure.
msg
string
Response message confirming the operation result, or an error description on failure.
data
null
Always null for delete operations. No data is returned.

Example Request

curl -X DELETE https://zcbservice.aizfw.cn/kyyReactApiServer/kyyVideo2/asset/asset-20260330142158-q75m8 \
  -H "Authorization: Bearer YOUR_API_KEY"
Success response:
{
  "code": "0",
  "msg": "success",
  "data": null
}

Before You Delete

Follow these steps to avoid accidental data loss:
  1. Confirm the asset — Use the Asset Details endpoint to verify this is the correct asset.
  2. Check for active usage — Ensure the asset is not referenced in any in-progress or scheduled generation tasks.
  3. Back up if needed — Download or note the original URL from the asset details before proceeding.
  4. Delete — Call this endpoint and confirm the response code is "0".