getRecords info not present
Hi, if I use the getrecords API V2 I can get and info map in the response, but if I use it inside a deluge script I just get the data, not the info even though the reference seems to suggest so:
https://www.zoho.com/crm/help/api/v2/#record-api
If I do
resp = zoho.crm.getRecords("Leads",5,2,{"converted":"false"});
I'm supposed to get also this:
"info": ▼{ "per_page": 200, "count": 200, "page": 1, "more_records": true }
but it is not true!
The info is useful to know if there are more records to fetch (and to know how many records have been actually retrieved). How to get those info from deluge?