Delete a given template
DELETE/templates/{uuid}
The API endpoint allows you to delete a document template.
Parameters
- uuid String
The unique identifier of the document template.
NodeJS
var axios = require("axios").default;
var options = {
method: 'DELETE',
url: 'https://api.signature.nc/api/v1/templates/e37e7113-6eb9-4eb7-840f-feffe528dd03',
headers: {'Authorization': 'Bearer {apiKey}'}
};
axios.request(options).then(function (response) {
console.log(response.data);
}).catch(function (error) {
console.error(error);
});
json
{}