Record a product download
curl --request POST \
--url https://v2.stopbars.com/downloadimport requests
url = "https://v2.stopbars.com/download"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://v2.stopbars.com/download', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Installer
Record a product download
Increments the download counter for the latest release of the given product. A given IP is only counted once per product+version within a rolling 24 hour window. After 24h the same IP can increment again.
POST
/
download
Record a product download
curl --request POST \
--url https://v2.stopbars.com/downloadimport requests
url = "https://v2.stopbars.com/download"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://v2.stopbars.com/download', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Query Parameters
Available options:
Pilot-Client, vatSys-Plugin, EuroScope-Plugin, Installer, SimConnect.NET Response
Download recorded (or already counted for this IP)
Was this page helpful?
