const options = {method: 'DELETE', headers: {'X-Kinetic-Key': '<api-key>'}};
fetch('https://api.example.com/api/workflows/{workflow_uuid}/version/{workflow_version_uuid}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));