Unlink a lead-on from a stopbar
curl --request DELETE \
--url https://v2.stopbars.com/airports/{icao}/points/{stopbarId}/link/{leadOnId} \
--header 'X-Vatsim-Token: <api-key>'import requests
url = "https://v2.stopbars.com/airports/{icao}/points/{stopbarId}/link/{leadOnId}"
headers = {"X-Vatsim-Token": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text)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));Points
Unlink a lead-on from a stopbar
DELETE
/
airports
/
{icao}
/
points
/
{stopbarId}
/
link
/
{leadOnId}
Unlink a lead-on from a stopbar
curl --request DELETE \
--url https://v2.stopbars.com/airports/{icao}/points/{stopbarId}/link/{leadOnId} \
--header 'X-Vatsim-Token: <api-key>'import requests
url = "https://v2.stopbars.com/airports/{icao}/points/{stopbarId}/link/{leadOnId}"
headers = {"X-Vatsim-Token": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text)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));Was this page helpful?
