Google News
logo
Rest API - Interview Questions
What is CRUD in Rest API?
CRUD stands for “Create, Read, Update, Delete.” These are the four basic actions that can be performed on databases through a REST API. Each action corresponds to an HTTP request method :
 
* Create = POST
* Read = GET
* Update = PUT
* Delete = DELETE

It’s not the most elegant of acronyms, but it works.
Advertisement