Quick Start Guide
Before you begin, make sure you have your API credentials ready.
1. Installation
composer require westfax/integration-sdk
2. Configuration
// Initialize WestFax client
$westfax = new WestFax\Client([
'api_key' => 'your-api-key',
'api_secret' => 'your-api-secret'
]);
3. Send Your First Fax
// Send a simple fax
$response = $westfax->fax->send([
'to' => '+1234567890',
'document' => '/path/to/document.pdf',
'notify_url' => 'https://your-callback-url.com'
]);