Lists rows of table
GET {{db_url}}/api/{{db_table}}/something
Retrieves all rows in a table, equivalent of:
SELECT * FROM <your table name>;
RESPONSES
status: OK
[{"id":1,"firstName":"Joe","lastName":"Bloggs"},{"id":2,"firstName":"Ben","lastName":"Smith"},{"id":3,"firstName":"Sue","lastName":"Brown"}]