Returns properties of multiple faxes
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");
$faxApi = new Dropbox\Sign\Api\FaxApi($config);
$page = 1;
$pageSize = 2;
try {
$result = $faxApi->faxList($page, $pageSize);
print_r($result);
} catch (Dropbox\Sign\ApiException $e) {
$error = $e->getResponseObject();
echo "Exception when calling Dropbox Sign API: "
. print_r($error->getError());
}
{- "list_info": {
- "num_pages": 1,
- "num_results": 1,
- "page": 1,
- "page_size": 1
}, - "faxes": [
- {
- "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"
}
],
}
]
}