Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 632 Bytes

README.md

File metadata and controls

15 lines (13 loc) · 632 Bytes

CRUD API

Making an API that can save notes. screenshot01

Features

  • Creating notes for example: HOST/addnote/TITLE
  • Notes are accessed by TITLE for creation, showing, editing and deleting
  • Updating notes
  • Getting a list of all the notes
  • Getting the text of one note
  • Deleting a note
  • Use a HTTP(S) GET to retreive data, POST request for adding, POST requests for updating, DELETE requests for deleting ....
  • Save the notes in an SQL database
  • You only return JSON data, so no forms/html/... this should be a pure API