TodoSystemMicroService-NodeJS/request.http

29 lines
577 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 gym",
"description": "Go to the gym at 8pm",
2023-07-08 07:56:00 +00:00
"due_date": "2023-07-08 10:55:00"
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}