## Delete video `client.stream.delete(stringidentifier, StreamDeleteParamsparams, RequestOptionsoptions?): void` **delete** `/accounts/{account_id}/stream/{identifier}` Deletes a video and its copies from Cloudflare Stream. ### Parameters - `identifier: string` A Cloudflare-generated unique identifier for a media item. - `params: StreamDeleteParams` - `account_id: string` The account identifier tag. ### 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.delete('ea95132c15732412d22c1476fa83f27a', { account_id: '023e105f4ecef8ad9ca31a8372d0c353', }); ``` #### Response ```json {} ```