How to push item name from Zoho Books to Zoho Creator using Custom function?

498 Views Asked by At

There are multiple module in Zoho Books, Suppose I need to push data of Estimate into Zoho Creator, I have created similar form in Zoho Creator as well as I made a connection with Zoho Books to Zoho Creator. I am able to push other data except this Item & Description. How can I push these data into Zoho Creator? I have added an image of items, I need to push these names

1

There are 1 best solutions below

2
On
resp = zoho.books.getRecordsByID("Estimate",rec_ID);
lines_items_resp = resp.get("estimate").getJSON("line_items");
for each rec in lines_items_resp {
    info rec.getJSON("id"); //line items id
}