List all product releases (optionally filtered)
curl --request GET \
--url https://v2.stopbars.com/releasesimport requests
url = "https://v2.stopbars.com/releases"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/releases', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Installer
List all product releases (optionally filtered)
GET
/
releases
List all product releases (optionally filtered)
curl --request GET \
--url https://v2.stopbars.com/releasesimport requests
url = "https://v2.stopbars.com/releases"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/releases', 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
200
Releases listed
Was this page helpful?
