## Delete a live input `stream.live_inputs.delete(strlive_input_identifier, LiveInputDeleteParams**kwargs)` **delete** `/accounts/{account_id}/stream/live_inputs/{live_input_identifier}` Prevents a live input from being streamed to and makes the live input inaccessible to any future API calls. ### Parameters - `account_id: str` Identifier. - `live_input_identifier: str` A unique identifier for a live input. ### Example ```python import os from cloudflare import Cloudflare client = Cloudflare( api_token=os.environ.get("CLOUDFLARE_API_TOKEN"), # This is the default and can be omitted ) client.stream.live_inputs.delete( live_input_identifier="66be4bf738797e01e1fca35a7bdecdcd", account_id="023e105f4ecef8ad9ca31a8372d0c353", ) ``` #### Response ```json {} ```