const options = {method: 'DELETE', headers: {cookie: 'acornops_cp_session='}};
fetch('https://api.acornops.dev/api/v1/workspaces/{workspaceId}/virtual-machines/{vmId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));