Return to site

REST INTERVIEW QUESTION: What does CRUD mean?

How is it rendered in REST API?

CRUD is a short form of Create, Read, Update and Delete. In REST API, the POST is used to create a resource, GET is used to read a resource, PUT is used to updated a resource and DELETE is used to remove a resource from the server.