Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List connected channels and inspect phone number status with @wazapin/sdk.
channel_id
wazapin.channels
const { data } = await wazapin.channels.list({ limit: 20 }); for (const channel of data.items) { console.log(channel.id); }
for await (const channel of wazapin.channels.listPaginated({ limit: 50 })) { console.log(channel.id); }
const channel = await wazapin.channels.get("wzp_ch_123");
const status = await wazapin.channels.status("wzp_ch_123");
await wazapin.channels.connect("wzp_ch_123"); const qr = await wazapin.channels.getQr("wzp_ch_123"); const health = await wazapin.channels.phoneHealth("wzp_ch_123");