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_id = "YOUR_TEMPLATE_ID" 
    
    delete_template_response=template_api.delete_template(template_id)
const axios = require('axios'); 
const response = await axios.delete('https://api.boldsign.com/v1/template/delete', { 
    params: { 
        'templateId': '{Paste your template ID}' 
    }, 

    headers: { 
        'accept': '*/*', 
        'X-API-KEY': '<API-KEY>' 
    } 
}); 

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