TodoSystemMicroService-NodeJS/request.http

29 lines
616 B
Text
Raw Normal View History

2023-07-07 22:54:57 +00:00
### Get All Request
GET http://localhost:3000/todo/{ID}
### create new request, YYYY-MM-DD HH:mm:ss.ss
POST http://localhost:3000/todo
Content-Type: application/json
{
2023-07-08 19:35:20 +00:00
"title": "-2!!!!NEW!!!!",
2023-07-07 22:54:57 +00:00
"description": "Go to the gym at 8pm",
2023-07-13 08:19:22 +00:00
"due_date": "2023-07-13T19:00:00.891Z"
2023-07-07 22:54:57 +00:00
}
### update request
2023-07-09 09:30:38 +00:00
PUT http://localhost:3000/todo/64aa7b55f73a81f5e374663b
2023-07-07 22:54:57 +00:00
Content-Type: application/json
{
"title": "test",
"description": "TEST NEW!",
2023-07-08 22:34:20 +00:00
"due_date": "2023-07-09T19:00:00.891Z"
2023-07-07 22:54:57 +00:00
}
### delete *ALL* request
DELETE http://localhost:3000/todo/
### delete request
DELETE http://localhost:3000/todo/{ID}