11 lines
549 B
Text
11 lines
549 B
Text
Very Simple GET request:
|
|
curl http://localhost:3000/maria_database
|
|
|
|
Simple JSON POST request:
|
|
curl -X POST http://localhost:3000/maria_database -H "Content-Type: application/json" -d '{"task": "DONE IN CURL"}'
|
|
|
|
Simple JSON DELETE request:
|
|
curl -X DELETE http://localhost:3000/maria_database -H "Content-Type: application/json" -d '{"deletedItem": "DONE IN CURL"}'
|
|
|
|
Simple JSON PUT request:
|
|
curl -X PUT http://localhost:3000/maria_database -H "Content-Type: application/json" -d '{"updated": "WE DID THIS IN CURL AGAIN", "previous": "DONE IN CURL"}'
|