Enables the retrieval of application information for a given application (appID).
https://api.ideasystem.org/v1/app/1234
The response will be an HTTP 200 with a JSON body. The body will be the application with the given ID.
If the given application ID cannot be found, an HTTP 404 (Not Found) will be returned. If there is an issue with the backend, a HTTP 500 (Internal Server Error) is returned. If the application name/key you are using doesn't have access to this REST end-point, you will get a 403 (Forbidden) error.
"id": 1234
"key": "abcdefghijklmnopqrstuvwxyz1234567890"
"name": "SampleApp123"
"contact": { ... }
"name": "Joe Technology"
"email": "joeTech@IDEAedu.org"
"read_only": true
"app_admin": false
This request will get an application with ID 1234.
GET /v1/app/1234
HTTP 200 { "id": 1234, "key": "abcdefghijklmnopqrstuvwxyz1234567890", "name": "IDEA Online", "read_only": false, "app_admin": false, "contact": { "name": "The IDEA Center", "email": "contact@IDEAedu.org" } }