List API Apps

get/api_app/list

Returns a list of API Apps that are accessible by you. If you are on a team with an Admin or Developer role, this list will include apps owned by teammates.

Securityapi_key or oauth2
Request
query Parameters
page
integer
Default: 1

Which page number of the API App List to return. Defaults to 1.

page_size
integer
Default: 20

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

Responses
200

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);

$page = 1;
$pageSize = 2;

try {
    $result = $apiAppApi->apiAppList($page, $pageSize);
    print_r($result);
} catch (Dropbox\Sign\ApiException $e) {
    $error = $e->getResponseObject();
    echo "Exception when calling Dropbox Sign API: "
        . print_r($error->getError());
}
Response samples
application/json
{
  • "api_apps": [
    ],
  • "list_info": {
    }
}