In old version asciisd/zoho I could use getRelatedListRecords to get all related contacts to an account.
In zoho-v3 I get the following error
Call to undefined method com\zoho\crm\api\record\Record::getRelatedListRecords()
Simplified version of my code:
$zoho_accounts = ZohoManager::useModule('Accounts');
$accounts=$zoho_accounts->searchRecordsByCriteria('(Dashboard:equals:true) and (Dashboard_not_exists:equals:true)');
foreach($accounts as $account) {
$contacts=$account->getRelatedListRecords('Contacts');
}
Is the function getRelatedListRecords replaced with a new function?
How to get my related contacts from a specific account?
In old version asciisd/zoho I could use getRelatedListRecords to get all related contacts to an account.
In zoho-v3 I get the following error
Call to undefined method com\zoho\crm\api\record\Record::getRelatedListRecords()
Simplified version of my code:
Is the function getRelatedListRecords replaced with a new function?
How to get my related contacts from a specific account?