Delete template
Mon, 12 Apr, 2021
You can move the template present in your template page listing to trash using this API. Refer the below code snippet for reference:
C#CURL
// This is an example template id, add your own template id upon usage.
var templateId = "949ebf20-45a8-4a3e-91a9-68e9540e0020";
this.templateApi.DeleteTemplate(templateId);
curl -X DELETE 'https://api.boldsign.com/v1/template/delete?templateId=949ebf20-45a8-4a3e-91a9-68e9540e0020' \
-H 'accept: */*' \
-H 'Authorization: Bearer <authtoken>'