Using Deluge, how to loop through all Open Meetings?
Using Deluge, how to loop through all Open Meetings?
Hi
I need to loop through all Open meetings.
My code is:
getMeetings = zoho.crm.getRelatedRecords("Events","Deals",deal.get("id"));
for each meeting in getMeetings
{
// do something
}
However, this loops through all Meetings (Open and Closed). Ive tried something like:
if(meeting.get("Status") == "Open")
{
// Do something with the open meeting
}
But that doesnt work. How can I do this please?
Thanks