Returns the properties and settings of a Fax Line.
successful operation
failed_operation
<?php
require_once __DIR__ . "/vendor/autoload.php";
$config = Dropbox\Sign\Configuration::getDefaultConfiguration();
// Configure HTTP basic authorization: api_key
$config->setUsername("YOUR_API_KEY");
$faxLineApi = new Dropbox\Sign\Api\FaxLineApi($config);
try {
$result = $faxLineApi->faxLineGet("[FAX_NUMBER]");
print_r($result);
} catch (Dropbox\Sign\ApiException $e) {
$error = $e->getResponseObject();
echo "Exception when calling Dropbox Sign API: "
. print_r($error->getError());
}
{- "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
}
]
}
}