Delete API App

delete/api_app/{client_id}

Deletes an API App. Can only be invoked for apps you own.

Securityapi_key or oauth2
Request
path Parameters
client_id
required
string

The client id of the API App to delete.

Example: 0dd3b823a682527788c4e40cb7b6f7e9
Responses
204

successful operation

4XX

failed_operation

Request samples
<?php

require_once __DIR__ . "/vendor/autoload.php";

$config = Dropbox\Sign\Configuration::getDefaultConfiguration();

// Configure HTTP basic authorization: api_key
$config->setUsername("YOUR_API_KEY");

// or, configure Bearer (JWT) authorization: oauth2
// $config->setAccessToken("YOUR_ACCESS_TOKEN");

$apiAppApi = new Dropbox\Sign\Api\ApiAppApi($config);

$clientId = "0dd3b823a682527788c4e40cb7b6f7e9";

try {
    $apiAppApi->apiAppDelete($clientId);
} catch (Dropbox\Sign\ApiException $e) {
    $error = $e->getResponseObject();
    echo "Exception when calling Dropbox Sign API: "
        . print_r($error->getError());
}
Response samples
application/json
{
  • "error": {
    }
}