List Fax Lines

get/fax_line/list

Returns the properties and settings of multiple Fax Lines.

Securityapi_key
Request
query Parameters
account_id
string

Account ID

Example: account_id=ab55cd14a97219e36b5ff5fe23f2f9329b0c1e97
page
integer
Default: 1

Which page number of the Fax Line List to return. Defaults to 1.

Example: page=1
page_size
integer
Default: 20

Number of objects to be returned per page. Must be between 1 and 100. Default is 20.

Example: page_size=20
show_team_lines
boolean

Include Fax Lines belonging to team members in the list

Responses
200

successful operation

4XX

failed_operation

Request samples
<?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()}";
}
Response samples
application/json
{
  • "list_info": {
    },
  • "fax_lines": [
    ]
}