Delete template

delete/v1/template/delete

Deletes a template from your account based on the template id you have provided. When the template is created on behalf of a particular sender email, then the delete operation can be performed on the same account by specifying the email in the onBehalfOf.

Code snippet

curl -X 'DELETE' \
  'https://api.boldsign.com/v1/template/delete?templateId=1b18b34d-aaae-4df8-aa8f-a93cda34379a' \
  -H 'accept: */*' \
  -H 'X-API-KEY: {your API key}'
var apiClient = new ApiClient("https://api.boldsign.com", "API-KEY");

var templateClient = new TemplateClient(apiClient);

templateClient.DeleteTemplate("1b18b34d-aaae-4df8-aa8f-a93cda34379a");
import boldsign

configuration = boldsign.Configuration(api_key="YOUR_API_KEY")

with boldsign.ApiClient(configuration) as api_client:

    template_api = boldsign.TemplateApi(api_client)
    template_api.delete_template(template_id = "YOUR_TEMPLATE_ID")
<?php require_once "vendor/autoload.php";

$config = new BoldSign\Configuration();
$config->setApiKey('YOUR_API_KEY');

$template_api = new BoldSign\Api\TemplateApi($config); 
$template_api->deleteTemplate($template_id = 'YOUR_TEMPLATE_ID');
ApiClient client = Configuration.getDefaultApiClient();  
client.setApiKey("YOUR_API_KEY");
        
TemplateApi templateApi = new TemplateApi(client);
templateApi.deleteTemplate("YOUR_TEMPLATE_ID", null);
import { TemplateApi } from "@boldsign/node-sdk";

const templateApi = new TemplateApi();
templateApi.setApiKey("YOUR_API_KEY");

templateApi.deleteTemplate("YOUR_TEMPLATE_ID");

Query parameters

templateIdstringRequiredThe ID of the template to delete.
onBehalfOfstringThe email address of the user that was used to create the template on their behalf.

Example response

204 No Content