## Delete a live input `client.stream.liveInputs.delete(stringliveInputIdentifier, LiveInputDeleteParamsparams, RequestOptionsoptions?): void` **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 - `liveInputIdentifier: string` A unique identifier for a live input. - `params: LiveInputDeleteParams` - `account_id: string` Identifier. ### Example ```node import Cloudflare from 'cloudflare'; const client = new Cloudflare({ apiToken: process.env['CLOUDFLARE_API_TOKEN'], // This is the default and can be omitted }); await client.stream.liveInputs.delete('66be4bf738797e01e1fca35a7bdecdcd', { account_id: '023e105f4ecef8ad9ca31a8372d0c353', }); ``` #### Response ```json {} ```