Zoho Creator Respose

Zoho Creator Respose

I am using your Zoho creator form in my site.
First I trying to test using API in my system.

But problem is that in response i got download XML or JSON files from browser.
Database entry is done successfully , but I need response in my site from which i can update different status in my system. don't want to download any file in Response.

Can you please give me proper guide line for that.?

I am using below code for add and submit form.
------------------------------------------------------------------------------------------------------------------
<form method="POST" action= "https://creator.zoho.com/api/cristopher/json/test/form/Payment_Form/record/add/" >
<input type="hidden" name ="authtoken" value="*************************388">
<input type="hidden" name ="scope" id="scope" value="creatorapi">
<input type="text" name="name" value="Gary">
<input type="submit" value="Add Record">
</form>
-----------------------------------------------------------------------------------------------------------------