List public vatSys profile XMLs
curl --request GET \
--url https://v2.stopbars.com/vatsys/profilesimport requests
url = "https://v2.stopbars.com/vatsys/profiles"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/vatsys/profiles', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));vatSys
List public vatSys profile XMLs
GET
/
vatsys
/
profiles
List public vatSys profile XMLs
curl --request GET \
--url https://v2.stopbars.com/vatsys/profilesimport requests
url = "https://v2.stopbars.com/vatsys/profiles"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/vatsys/profiles', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Response
200
Profiles listed
Was this page helpful?
