Created Info API (markdown)

Tom Bloor 2017-04-23 14:06:01 +01:00
parent 221695f65d
commit 90b6ff9d4e

23
Info-API.md Normal file

@ -0,0 +1,23 @@
# Info API
_Last Updated 2017-04-23_
The Info API consists of endpoints which are useful lookup tables for various sections of the app.
## Ages Endpoint
### `GET /api/info/ages`
Returns a JSON object. ID is used during User Registration for Customers.
```
{
ages : [
{
id : <age_range id>
string : <age_range display string>
}
...
]
}
```