const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://reprompt-mikhail--reprompt-fastapi-fastapi-app-dev.modal.run/{org}/place_enrichment/batches/{batch_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));