cURL
curl --request GET \
--url http://localhost:8081/admin-service/institutionsconst options = {method: 'GET'};
fetch('http://localhost:8081/admin-service/institutions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "http://localhost:8081/admin-service/institutions"
response = requests.get(url)
print(response.text)Get admin serviceinstitutions
List all institutions
GET
/
admin-service
/
institutions
cURL
curl --request GET \
--url http://localhost:8081/admin-service/institutionsconst options = {method: 'GET'};
fetch('http://localhost:8081/admin-service/institutions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "http://localhost:8081/admin-service/institutions"
response = requests.get(url)
print(response.text)Response
OK
⌘I