Skip to content
Get started

Delete Multiple

assets.delete_multiple(AssetDeleteMultipleParams**kwargs) -> object
DELETE/assets

Delete multiple assets

ParametersExpand Collapse
asset_ids: Sequence[str]

The ids of the assets to delete. (Max 100 at once)

ReturnsExpand Collapse
object

Delete Multiple

import os
from scenario_sdk import Scenario

client = Scenario(
    api_key=os.environ.get("SCENARIO_SDK_API_KEY"),  # This is the default and can be omitted
    api_secret=os.environ.get("SCENARIO_SDK_API_SECRET"),  # This is the default and can be omitted
)
response = client.assets.delete_multiple(
    asset_ids=["string"],
)
print(response)
{}
Returns Examples
{}