We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58504ba commit 62e9691Copy full SHA for 62e9691
README.md
@@ -31,6 +31,7 @@ You can also use the `/openapi.yaml` endpoint to get the OpenAPI specification f
31
For each table in the database, the following endpoints are available:
32
33
- `GET /<table>`: Get all records from the table.
34
+- `GET /<table>/<id>`: Returns the record with the given ID from the table.
35
- `POST /<table>`: Create a new record in the table. The data for the record should be provided as JSON in the request body.
36
- `PUT /<table>/<id>`: Update an existing record in the table. The data for the record should be provided as JSON in the request body.
37
- `DELETE /<table>/<id>`: Delete an existing record from the table.
0 commit comments