Lists rows of table

GET {{db_url}}/api/{{db_table}}/something

Retrieves all rows in a table, equivalent of:

SELECT * FROM <your table name>;

MySQL in Qodex

RESPONSES

status: OK

[{&quot;id&quot;:1,&quot;firstName&quot;:&quot;Joe&quot;,&quot;lastName&quot;:&quot;Bloggs&quot;},{&quot;id&quot;:2,&quot;firstName&quot;:&quot;Ben&quot;,&quot;lastName&quot;:&quot;Smith&quot;},{&quot;id&quot;:3,&quot;firstName&quot;:&quot;Sue&quot;,&quot;lastName&quot;:&quot;Brown&quot;}]