Javascript
import BlueHive from '@bluehive/sdk'; const client = new BlueHive({ apiKey: 'My API Key', }); const response = await client.fax.listProviders(); console.log(response.providers);
{ "providers": [ { "name": "<string>", "configured": true, "isDefault": true } ] }
Get a list of available fax providers and their configuration status.
API key for accessing BlueHive API endpoints. Format: "ApiKey <your-api-key>" or "Bearer <your-api-key>"
Default Response
The response is of type object.
object
Was this page helpful?