No more extra passwords to remember.
Fax from any MFP securely and natively.
Integrate with any EHR.
Delivery to our portal, email client, SFTP, Autoprint, Network File drop, Azure BLOB, SharePoint, and more. You decide.
WestFax can automate your fax or document workflow — eliminating costly manual labor and patchwork systems.
It's easy to get started. Just register as a developer, we'll get you credentials and just one look at our intuitive and interactive API documentation will have you sending fax in less than an hour!
curl -L -X POST 'https://api2.westfax.com/REST/Fax_Send/json'
-H 'ContentType: multipart/form-data'
-F 'Username="user@acme.org"'
-F 'Password="yyyyyyyyy"'
-F 'ProductId="00000000-0000-0000-0000-00000000000"'
-F 'Numbers1="888-555-1212'
-F 'Files0=@"/path/to/fax.pdf"'
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://api2.westfax.com/REST/Fax_Send/json',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT =>0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS => array('Username' => 'user@acme.org','Password' => 'yyyyyyyy','ProductId' => '00000000-0000-0000-0000-00000000000','Numbers1' => '888-555-1212','Files0'=> new CURLFILE('/path/to/fax.pdf')),
CURLOPT_HTTPHEADER => array( 'ContentType: multipart/form-data' ),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;