Add condition to only fetch active items from Zoho Books
Hi, how would you modify the following Deluge code to only fetch Items from Zoho Books that are "active" status:
- response = zoho.books.getRecords("Items","111222333444");
- itemList = response.get("items").toJSONList();
- for each item in itemList
- {
- input.Items:ui.add(item.getJSON("item_name"));
- }
Thank you!