TodoSystemMicroService-NodeJS/request.http

29 lines
588 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
{
"title": "Go to the gymNEW!!!",
2023-07-07 22:54:57 +00:00
"description": "Go to the gym at 8pm",
2023-07-08 13:08:35 +00:00
"due_date": "2023-07-08T16:02:00.000Z"
2023-07-07 22:54:57 +00:00
}
### update request
PUT http://localhost:3000/todo/{ID}
Content-Type: application/json
{
"title": "test",
"description": "TEST NEW!",
"due_date": "2020-12-12"
}
### delete *ALL* request
DELETE http://localhost:3000/todo/
### delete request
DELETE http://localhost:3000/todo/{ID}