## Generate the Letter of Authorization (LOA) for a given interconnect `network_interconnects.interconnects.loa(stricon, InterconnectLOAParams**kwargs)` **get** `/accounts/{account_id}/cni/interconnects/{icon}/loa` Generate the Letter of Authorization (LOA) for a given interconnect ### 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.loa( icon="icon", account_id="account_id", ) ```