Enables the retrieval of institution information based upon the ID given.
https://api.ideasystem.org/v1/institution
/v1/institution/1
The response will be an HTTP 200 with a JSON body. The body will include the institution information.
If there is an issue with the backend, a HTTP 500 (Internal Server Error) is returned. If an institution cannot be found with the given ID, an HTTP 404 (Not Found) will be returned.
"id": 1234
"fice": "003919"
"name": "IDEA University"
This request will get an institution with ID 1234.
GET /v1/institution/1234
HTTP 200 { "id": 123, "fice": "001032", "name": "The IDEA Center" }