How can I have a custom function return a list of variables?
Hi,
Still learning Deluge and Zoho Flow. Also, I'm not a programmer. Be gentle. ;-)
I would like use the return of a custom function to offer a dropdown when you catch a webhook. Is that possible?
drop down of webhook
A bit of context. I am trying to return the Zoho Account after searching for a specific field.
- list find_zaccount_from_iugu_subscription_id(string iuguSubscriptionId)
- {
- criteria = "(Iugu_ID:equals:" + iuguSubscriptionId + ")";
- response = zoho.crm.searchRecords("Accounts",criteria);
- //pick first record
- response = response.get(0);
- return response;
- }
Do I have to convert the response to a map? A JSON string? A XML? Something else?