const options = {method: 'DELETE', headers: {'X-Vatsim-Token': '<api-key>'}};
fetch('https://v2.stopbars.com/airports/{icao}/points/{stopbarId}/link/{leadOnId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));