Open BartCardan opened 1 year ago
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?
I'm very sorry about that. Maybe it's because the Zoho original package changed. Let me check for the ability to add this again.
any solution for this?
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?