## Delete an interconnect object `network_interconnects.interconnects.delete(stricon, InterconnectDeleteParams**kwargs)` **delete** `/accounts/{account_id}/cni/interconnects/{icon}` Delete an interconnect object ### Parameters - `account_id: str` Customer account tag - `icon: str` ### Example ```python import os from cloudflare import Cloudflare client = Cloudflare( api_token=os.environ.get("CLOUDFLARE_API_TOKEN"), # This is the default and can be omitted ) client.network_interconnects.interconnects.delete( icon="icon", account_id="account_id", ) ```