Publishing
Remove assets from an unpushed bundle
Removes one or more assets from an unpushed bundle. Each asset is processed independently with per-asset results. Assets not found in the bundle return success=false.
delete/api/v1/bundles/{bundleId}/assets
Path parameters
bundleIdstring required
Bundle identifier
Request body
Example request
{
"assetIds": [
"asset-123",
"asset-456"
]
}Response
Removal completed (check per-asset success flags)
Example response
{
"entity": [
{
"assetId": "550e8400-e29b-41d4-a716-446655440000",
"success": true,
"message": "Asset removed from bundle"
}
]
}Changes
No recorded changes to this endpoint across all 1 revision of this API.