GET http://localhost:3000/note
HTTP/1.1 200 OK
X-Powered-By: Express
Content-Type: application/json; charset=utf-8
Content-Length: 165
ETag: W/"a5-9LNR05ff9m6u4yxXkuLQQxWx+gk"
Date: Thu, 23 May 2024 01:55:00 GMT
Connection: close
[
{
"id": "firstNote",
"content": "this firstNote content"
},
{
"id": "secondNote",
"content": "this secondNote content"
},
{
"id": "thirdNote",
"content": "this thirdNote content"
}
]
POST http://localhost:3000/note
Content-Type: application/json
{
"note":
{
"id":"newNote",
"content":"this new note content"
}
}
HTTP/1.1 200 OK
X-Powered-By: Express
Content-Type: application/json; charset=utf-8
Content-Length: 216
ETag: W/"d8-gcoqcbU+cGlHhnufqq686iw7s+A"
Date: Thu, 23 May 2024 02:34:40 GMT
Connection: close
[
{
"id": "firstNote",
"content": "this firstNote content"
},
{
"id": "secondNote",
"content": "this secondNote content"
},
{
"id": "thirdNote",
"content": "this thirdNote content"
},
{
"id": "newNote",
"content": "this new note content"
}
]
PUT http://localhost:3000/note
Content-Type: application/json
{
"note":
{
"id":"firstNote",
"content":"FIRST NOTE CONTENT UPDATED"
}
}
HTTP/1.1 200 OK
X-Powered-By: Express
Content-Type: application/json; charset=utf-8
Content-Length: 220
ETag: W/"dc-VAsAKKZQ40rO9MUpChOLNEhFWFQ"
Date: Thu, 23 May 2024 02:48:05 GMT
Connection: close
[
{
"id": "firstNote",
"content": "FIRST NOTE CONTENT UPDATED"
},
{
"id": "secondNote",
"content": "this secondNote content"
},
{
"id": "thirdNote",
"content": "this thirdNote content"
},
{
"id": "newNote",
"content": "this new note content"
}
]
DELETE http://localhost:3000/note/firstNote
HTTP/1.1 200 OK
X-Powered-By: Express
Content-Type: application/json; charset=utf-8
Content-Length: 162
ETag: W/"a2-vyaynMnGZDbW/bTdYao3M9sVGN0"
Date: Thu, 23 May 2024 02:55:26 GMT
Connection: close
[
{
"id": "secondNote",
"content": "this secondNote content"
},
{
"id": "thirdNote",
"content": "this thirdNote content"
},
{
"id": "newNote",
"content": "this new note content"
}
]