const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.k0rdent.ai/v1/regions/{region}/projects/{project}/compute/networks/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));