| |||||
Zoho Creator provides Web APIs in CSV format which allows client applications to add, delete, update and view records on their applications created with Zoho Creator. The calling conventions employed over here for these APIs is HTTP POST . In return the user gets a formatted XML response from the called method.
| <form method=" POST " action="http://creator.zoho.com/api/csv/ write /apikey= [APIKEY] &ticket= [Ticket] "> <input type="hidden" name="CSVString" value=" CSV String with request parameters in the specified format "> <input type="submit" value="Sumit CSV String"> </form> |
| <form method=" POST " action="http://creator.zoho.com/api/csv/ read /apikey= [APIKEY] &ticket= [Ticket] "> <input type="hidden" name="CSVString" value=" CSV String with request parameters in the specified format "> <input type="submit" value="Sumit XML String"> </form> |
Form Name , Criteria , Status
dateForm ,Age EQUAL 24 ,Success
ID ,Name ,Age ,DOB
2000000079003 ,Kalai ,24 ,2007-08-20 00:00:00.0
To get started with the CSV - RPC APIs, please refer our CSV-RPC API Reference.