## Generate the Letter of Authorization (LOA) for a given interconnect `client.networkInterconnects.interconnects.loa(stringicon, InterconnectLOAParamsparams, RequestOptionsoptions?): void` **get** `/accounts/{account_id}/cni/interconnects/{icon}/loa` Generate the Letter of Authorization (LOA) for a given interconnect ### Parameters - `icon: string` - `params: InterconnectLOAParams` - `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.loa('icon', { account_id: 'account_id' }); ```