Skip to content

sumber-rejeki/TKM12-CRUD-API-nodeJS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

//REQUEST

GET http://localhost:3000/note

//RESPONSE

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"
  }
]

//REQUEST

POST http://localhost:3000/note

Content-Type: application/json

{
    "note": 
    {
        "id":"newNote",
        "content":"this new note content"
    }
}

//RESPONSE

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"
  }
]

//REQUEST

PUT http://localhost:3000/note

Content-Type: application/json

{
    "note": 
    {
        "id":"firstNote",
        "content":"FIRST NOTE CONTENT UPDATED"
    }
}

//RESPONSE

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"
  }
]

//REQUEST

DELETE http://localhost:3000/note/firstNote

//RESPONSE

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"
  }
]

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published