List rows of table

GET {{db_url}}/{{db_table}}

Retrieves all rows in a table, equivalent of:

SELECT * FROM <your table name>;

PostgreSQL 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;}]