## [DEPRECATED] Delete Pipeline `client.pipelines.delete(stringpipelineName, PipelineDeleteParamsparams, RequestOptionsoptions?): void` **delete** `/accounts/{account_id}/pipelines/{pipeline_name}` [DEPRECATED] Delete a pipeline. Use the new /pipelines/v1/pipelines endpoint instead. ### Parameters - `pipelineName: string` Defines the name of the pipeline. - `params: PipelineDeleteParams` - `account_id: string` Specifies the public ID of the account. ### 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.pipelines.delete('sample_pipeline', { account_id: '0123105f4ecef8ad9ca31a8372d0c353', }); ```