Configure Price Quote (CPQ) CPQ for SOAP API Developers API Reference Proposal Web Service Current: Deleting an Email Template PDF Download PDF Download page Deleting an Email Template. Current page All pages Deleting an Email Template The API deletes an email template.APISignaturedeleteEmailTemplatewebService static Boolean deleteEmailTemplate(Id templateId)Request ParameterNameTypeDescriptiontemplateIdIDThe ID of the email template sobject you want to delete.Response ParameterFieldTypeDescriptionisDeletedBooleanIndicates whether the email template was deleted.Code SampleThe sample code below enables you to delete an email template and return the status of the delete action. /** * The below code demonstrates how to delete existing email template. */ Public Boolean deleteMailTemplate(Id templateId) { Boolean isDeleted = Apttus_Proposal.ProposalWebService.deleteEmailTemplate(templateId); return isDeleted; } CODE ×