## Delete an interconnect object `client.networkInterconnects.interconnects.delete(stringicon, InterconnectDeleteParamsparams, RequestOptionsoptions?): void` **delete** `/accounts/{account_id}/cni/interconnects/{icon}` Delete an interconnect object ### Parameters - `icon: string` - `params: InterconnectDeleteParams` - `account_id: string` Customer account 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.networkInterconnects.interconnects.delete('icon', { account_id: 'account_id' }); ```