All URIs are relative to https://api.hellosign.com/v3.
Method | HTTP request | Description |
---|---|---|
apiAppCreate() | POST /api_app | Create API App |
apiAppDelete() | DELETE /api_app/{client_id} | Delete API App |
apiAppGet() | GET /api_app/{client_id} | Get API App |
apiAppList() | GET /api_app/list | List API Apps |
apiAppUpdate() | PUT /api_app/{client_id} | Update API App |
apiAppCreate($api_app_create_request): \Dropbox\Sign\Model\ApiAppGetResponse
Create API App
Creates a new API App.
<?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);
$oauth = new Dropbox\Sign\Model\SubOAuth();
$oauth->setCallbackUrl("https://example.com/oauth")
->setScopes([
Dropbox\Sign\Model\SubOAuth::SCOPES_BASIC_ACCOUNT_INFO,
Dropbox\Sign\Model\SubOAuth::SCOPES_REQUEST_SIGNATURE,
]);
$whiteLabelingOptions = new Dropbox\Sign\Model\SubWhiteLabelingOptions();
$whiteLabelingOptions->setPrimaryButtonColor("#00b3e6")
->setPrimaryButtonTextColor("#ffffff");
$customLogoFile = new SplFileObject(__DIR__ . "/CustomLogoFile.png");
$data = new Dropbox\Sign\Model\ApiAppCreateRequest();
$data->setName("My Production App")
->setDomains(["example.com"])
->setOauth($oauth)
->setWhiteLabelingOptions($whiteLabelingOptions)
->setCustomLogoFile($customLogoFile);
try {
$result = $apiAppApi->apiAppCreate($data);
print_r($result);
} catch (Dropbox\Sign\ApiException $e) {
$error = $e->getResponseObject();
echo "Exception when calling Dropbox Sign API: "
. print_r($error->getError());
}
Name | Type | Description | Notes |
---|---|---|---|
api_app_create_request | \Dropbox\Sign\Model\ApiAppCreateRequest |
\Dropbox\Sign\Model\ApiAppGetResponse
- Content-Type:
application/json
,multipart/form-data
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
apiAppDelete($client_id)
Delete API App
Deletes an API App. Can only be invoked for apps you own.
<?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());
}
Name | Type | Description | Notes |
---|---|---|---|
client_id | string | The client id of the API App to delete. |
void (empty response body)
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
apiAppGet($client_id): \Dropbox\Sign\Model\ApiAppGetResponse
Get API App
Returns an object with information about an API App.
<?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 {
$result = $apiAppApi->apiAppGet($clientId);
print_r($result);
} catch (Dropbox\Sign\ApiException $e) {
$error = $e->getResponseObject();
echo "Exception when calling Dropbox Sign API: "
. print_r($error->getError());
}
Name | Type | Description | Notes |
---|---|---|---|
client_id | string | The client id of the API App to retrieve. |
\Dropbox\Sign\Model\ApiAppGetResponse
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
apiAppList($page, $page_size): \Dropbox\Sign\Model\ApiAppListResponse
List API Apps
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.
<?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());
}
Name | Type | Description | Notes |
---|---|---|---|
page | int | Which page number of the API App List to return. Defaults to 1 . |
[optional] [default to 1] |
page_size | int | Number of objects to be returned per page. Must be between 1 and 100 . Default is 20 . |
[optional] [default to 20] |
\Dropbox\Sign\Model\ApiAppListResponse
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
apiAppUpdate($client_id, $api_app_update_request): \Dropbox\Sign\Model\ApiAppGetResponse
Update API App
Updates an existing API App. Can only be invoked for apps you own. Only the fields you provide will be updated. If you wish to clear an existing optional field, provide an empty string.
<?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);
$whiteLabelingOptions = new Dropbox\Sign\Model\SubWhiteLabelingOptions();
$whiteLabelingOptions->setPrimaryButtonColor("#00b3e6")
->setPrimaryButtonTextColor("#ffffff");
$customLogoFile = new SplFileObject(__DIR__ . "/CustomLogoFile.png");
$data = new Dropbox\Sign\Model\ApiAppUpdateRequest();
$data->setName("New Name")
->setCallbackUrl("http://example.com/dropboxsign")
->setWhiteLabelingOptions($whiteLabelingOptions)
->setCustomLogoFile($customLogoFile);
$clientId = "0dd3b823a682527788c4e40cb7b6f7e9";
try {
$result = $apiAppApi->apiAppUpdate($clientId, $data);
print_r($result);
} catch (Dropbox\Sign\ApiException $e) {
$error = $e->getResponseObject();
echo "Exception when calling Dropbox Sign API: "
. print_r($error->getError());
}
Name | Type | Description | Notes |
---|---|---|---|
client_id | string | The client id of the API App to update. | |
api_app_update_request | \Dropbox\Sign\Model\ApiAppUpdateRequest |
\Dropbox\Sign\Model\ApiAppGetResponse
- Content-Type:
application/json
,multipart/form-data
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]