Explanation: The most commonly used HTTP methods POST, GET, PUT, PATCH, DELETE are similar to CURD (create, update, read, delete) operations in the database. Just try to remember below the key Points: Create NEW record =>POST read=>GET If the record exists then update else create a new record=>PUT update/modify=>PATCH delete=>DELETE