diff --git a/Requests/todo.http b/Requests/todo.http new file mode 100644 index 00000000..e2fe8a6a --- /dev/null +++ b/Requests/todo.http @@ -0,0 +1,19 @@ +### Get Todos +@token = + +GET http://localhost:5000/todos +Authorization: Bearer {{token}} + +### POST Todo + +POST http://localhost:5000/todos +Authorization: Bearer {{token}} +Content-Type: application/json + +{ + "title": "Get a haircut" +} + +### DELETE Todo +DELETE http://localhost:5000/todos/1 +Authorization: Bearer {{token}} \ No newline at end of file