## Get the current settings for the active account `client.networkInterconnects.settings.get(SettingGetParamsparams, RequestOptionsoptions?): SettingGetResponse` **get** `/accounts/{account_id}/cni/settings` Get the current settings for the active account ### Parameters - `params: SettingGetParams` - `account_id: string` Account tag to retrieve settings for ### Returns - `SettingGetResponse` - `default_asn: number` ### Example ```node import Cloudflare from 'cloudflare'; const client = new Cloudflare({ apiToken: process.env['CLOUDFLARE_API_TOKEN'], // This is the default and can be omitted }); const setting = await client.networkInterconnects.settings.get({ account_id: 'account_id' }); console.log(setting.default_asn); ``` #### Response ```json { "default_asn": 0 } ```