Deletes your Team. Can only be invoked when you have a Team with only one member (yourself).
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");
// $config->setAccessToken("YOUR_ACCESS_TOKEN");
try {
(new Dropbox\Sign\Api\TeamApi(config: $config))->teamDelete();
} catch (Dropbox\Sign\ApiException $e) {
echo "Exception when calling TeamApi#teamDelete: {$e->getMessage()}";
}
{- "error": {
- "error_msg": "This value should not be blank",
- "error_path": "cc_email_addresses[0]",
- "error_name": "bad_request"
}
}