All Zoho CRM entities are modelled as classes having members and methods applicable to that particular entity.
It
is not always effective to follow the complete class hierarchy from the
top to fetch the data of an entity at some lower level, since this
would involve API calls at every level. In order to handle this, every
entity class will have a getInstance() method to get its own dummy object and methods to get dummy objects of its child entities.
Summing it up,
Hence, to get records from a module, there's no need to start from ZCRMRestClient. Instead, you could get a ZCRMModule instance with ZCRMModule.getInstance() and then invoke its non-static getRecords() method
from the created instance. This would avoid the API call that would
otherwise have been triggered to populate the ZCRMModule object.
Since record properties are dynamic across modules, we have only given the common fields like createdTime, createdBy, owner etc, as ZCRMRecord’s default members. All other record properties are available as a map in ZCRMRecord object.
To
access the individual field values of a record, use the getter and
setter methods available. The keys of the record properties map are the
API names of the module’s fields. API names of all fields of all modules
are available under,
Setup → Marketplace → APIs → CRM API → API Names.