8 lines
217 B
Bash
8 lines
217 B
Bash
|
|
clear
|
||
|
|
|
||
|
|
# Get all record of Tables
|
||
|
|
# curl -X GET -H 'Content-Type: application/json' localhost:8080/tables
|
||
|
|
|
||
|
|
# Get only one record of Table by id 6
|
||
|
|
curl -X GET -H 'Content-Type: application/json' localhost:8080/table/6
|