Returns information about a Fax
successful operation
failed_operation
<?php
namespace Dropbox\SignSandbox;
require_once __DIR__ . '/../vendor/autoload.php';
use SplFileObject;
use Dropbox;
$config = Dropbox\Sign\Configuration::getDefaultConfiguration();
$config->setUsername("YOUR_API_KEY");
try {
    $response = (new Dropbox\Sign\Api\FaxApi(config: $config))->faxGet(
        fax_id: "fa5c8a0b0f492d768749333ad6fcc214c111e967",
    );
    print_r($response);
} catch (Dropbox\Sign\ApiException $e) {
    echo "Exception when calling FaxApi#faxGet: {$e->getMessage()}";
}
{- "fax": {
- "fax_id": "c2e9691c85d9d6fa6ae773842e3680b2b8650f1d",
 - "title": "example title",
 - "original_title": "example original title",
 - "subject": "example subject",
 - "message": "example message",
 - "metadata": [ ],
 - "created_at": 1726774555,
 - "sender": "me@dropboxsign.com",
 - "transmissions": [
- {
- "recipient": "recipient@dropboxsign.com",
 - "sender": "me@dropboxsign.com",
 - "sent_at": 1723231831,
 - "status_code": "success"
 
} 
], 
} 
}