Get Template

get/template/{template_id}

Returns the Template specified by the template_id parameter.

Securityapi_key or oauth2
Request
path Parameters
template_id
required
string

The id of the Template to retrieve.

Example: f57db65d3f933b5316d398057a36176831451a35
Responses
200

successful operation

4XX

failed_operation

Request samples
<?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\TemplateApi(config: $config))->templateGet(
        template_id: "f57db65d3f933b5316d398057a36176831451a35",
    );

    print_r($response);
} catch (Dropbox\Sign\ApiException $e) {
    echo "Exception when calling TemplateApi#templateGet: {$e->getMessage()}";
}
Response samples
application/json
{
  • "template": {
    }
}