Crud operations in web services are -Create –Retrieve – update –delete
In http the above 4 crud operations are actually achieved using the below 4 methods Post -Get –put –delete
Out of these 4 create(post) ,update(put) and delete(delete) make changes to backend db but retrieve or get is only used to retrieve data so it does not make any changes to db.