import BlueHive from '@bluehive/sdk';const client = new BlueHive({ apiKey: process.env['BLUEHIVE_API_KEY'], // This is the default and can be omitted});const response = await client.fax.listProviders();console.log(response.providers);
Get a list of available fax providers and their configuration status.
GET
/
v1
/
fax
/
providers
JavaScript
Copy
import BlueHive from '@bluehive/sdk';const client = new BlueHive({ apiKey: process.env['BLUEHIVE_API_KEY'], // This is the default and can be omitted});const response = await client.fax.listProviders();console.log(response.providers);