Returns the properties and settings of multiple Fax Lines.
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))->faxLineList(
account_id: "ab55cd14a97219e36b5ff5fe23f2f9329b0c1e97",
page: 1,
page_size: 20,
);
print_r($response);
} catch (Dropbox\Sign\ApiException $e) {
echo "Exception when calling FaxLineApi#faxLineList: {$e->getMessage()}";
}
{- "list_info": {
- "num_pages": 1,
- "num_results": 1,
- "page": 1,
- "page_size": 1
}, - "fax_lines": [
- {
- "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
}
]
}
]
}