Returns the properties and settings of a Fax Line.
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\FaxLineApi(config: $config))->faxLineGet(
number: "123-123-1234",
);
print_r($response);
} catch (Dropbox\Sign\ApiException $e) {
echo "Exception when calling FaxLineApi#faxLineGet: {$e->getMessage()}";
}
{- "fax_line": {
- "number": "[FAX_NUMBER]",
- "created_at": 1723231831,
- "updated_at": 1723231831,
- "accounts": [
- {
- "account_id": "c2e9691c85d9d6fa6ae773842e3680b2b8650f1d",
- "email_address": "me@dropboxsign.com",
- "is_locked": false,
- "is_paid_hs": false,
- "is_paid_hf": true
}
]
}
}