I have to implement one application in web2py where my app will have Restful web service which will collect the request data and insert or update to the database and after updating to db it will display all update data to the UI.
Lets take an example of employee: I have employee table(employee name, age, address,salary), i will get employee related data from client which will use POST to send the data to me, my app then have RESTful service which collects all these data , insert/update to db and then display the updated data to the UI. How to achieve it in web2py? I am new to web2py so please share with some example.

