## Delete `collections.delete(strcollection_id) -> object` **delete** `/collections/{collectionId}` Delete a collection ### Parameters - `collection_id: str` ### Returns - `object` ### Example ```python 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 ) collection = client.collections.delete( "collectionId", ) print(collection) ``` #### Response ```json {} ```