Skip to content

SeppeVerhavert/becode-database-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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