adding record via POST method

adding record via POST method

Hi,

We have created a html file with following data

<html>
<form method="POST" action="https://creator.zoho.com/api/xml/interface/Simple/add/">
<input type="hidden" name ="authtoken" value="xxxxxxxxxxxxxxxxxxxxxxxxxxxx">
<input type="hidden" name ="scope" value="creatorapi">
<input type="hidden" name ="Name" value="Me">
<input type="hidden" name ="DOB" value="01-jan-2010">

<input type="submit" value="Add Record">
</form>
</html>

When we run this file through a browser it generates a button on the screen " Add Record"

On pressing the button a new record gets created in the form "Simple" with values as specified in the input file.

Our requirement is as follows

  1. User should be able to pass his loginid & password in the source file so that we can validate the incoming entry to the form. (At present the form is public and we shall make it private and share it to specific users who are required to send/input data )
  2. We would like the data to be added to the form with out any user intervention i.e. when the source file is read by the browser, it should push data immediately to the form with user input and return the response.
  3. Or how an external user input/add/edit/update a record in the a zoho form through API.

Please guide us.
Thanks
P.K. Inani