Get Account

get/account

Returns the properties and settings of your Account.

Securityapi_key or oauth2
Request
query Parameters
account_id
string

account_id or email_address is required. If both are provided, the account id prevails.

The ID of the Account.

email_address
string

account_id or email_address is required, If both are provided, the account id prevails.

The email address of the Account.

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");
// $config->setAccessToken("YOUR_ACCESS_TOKEN");

try {
    $response = (new Dropbox\Sign\Api\AccountApi(config: $config))->accountGet();

    print_r($response);
} catch (Dropbox\Sign\ApiException $e) {
    echo "Exception when calling AccountApi#accountGet: {$e->getMessage()}";
}
Response samples
application/json
{
  • "account": {
    }
}