Posting data from Zoho to REST Api

Posting data from Zoho to REST Api

I am trying to post data from a Zoho form to an API through XML so that I can push a list of updated records upon each add or edit to the Canvas API.

This should be really easy, but I am not grasping the concepts of the built in function for HTTP requests.

Could someone help with some sample code?


Look at the reference data API starting on page 12 of this document:

http://www.gocanvas.com/content/images/file-uploads/Canvas_Webservices_-_version_1-3-0.pdf

Trying to do something like this in deluge


for each record in Add_a_record {
 // add records to list here
}

// then form http request and post it here

Any help would be much appreciated!