## Delete a specified CNI object `client.networkInterconnects.cnis.delete(stringcni, CNIDeleteParamsparams, RequestOptionsoptions?): void` **delete** `/accounts/{account_id}/cni/cnis/{cni}` Delete a specified CNI object ### Parameters - `cni: string` - `params: CNIDeleteParams` - `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.cnis.delete('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', { account_id: 'account_id', }); ```