Returns an object with information about an API App.
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 {
$response = (new Dropbox\Sign\Api\ApiAppApi(config: $config))->apiAppGet(
client_id: "0dd3b823a682527788c4e40cb7b6f7e9",
);
print_r($response);
} catch (Dropbox\Sign\ApiException $e) {
echo "Exception when calling ApiAppApi#apiAppGet: {$e->getMessage()}";
}
{- "api_app": {
- "callback_url": null,
- "client_id": "0dd3b823a682527788c4e40cb7b6f7e9",
- "created_at": 1436232339,
- "domains": [
- "example.com"
], - "is_approved": true,
- "name": "My Production App",
- "oauth": {
- "scopes": [
- "basic_account_info",
- "request_signature"
], - "secret": "98891a1b59f312d04cd88e4e0c498d75"
}, - "owner_account": {
- "account_id": "dc5deeb9e10b044c591ef2475aafad1d1d3bd888",
- "email_address": "john@example.com"
}
}
}