Add record API to trigger Zapier

Add record API to trigger Zapier

I'd like to add a record via API. I'm fairly competent with deluge but have no experience with API. 

So I copied and pasted/edited the info (from zoho API wiki) on "On Success" of a form

<input type="hidden" name ="authtoken" value="***************">
<input type="hidden" name ="scope" id="scope" value="creatorapi">
<input type="text" name="Name" value="Gary">
<input type="text" name="DOB" value="12-Jun-1980">
<input type="text" name="Address" value="USA">
<input type="text" name="Basic" value="10000">
<input type="text" name="Hobbies" value="Reading,Writing">

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

I replaced all the fields necessary but i receive a "Error at line number ##. Improper statement. Error might be due to missing ';' at end of the line incomplete expression."

Any tips?