private $configuration = [
'client_id' => '1000.AAA',
'client_secret' => 'BBB',
'redirect_uri' => 'CCC',
'currentUserEmail' => 'DDD',
'token_persistence_path' => './',
];
$contacts = ZCRMModule::getInstance("Contacts")->getRecords();
private $configuration = [//sandbox params
'client_id' => '1000.AAA',
'client_secret' => 'BBB',
'redirect_uri' => 'CCC',
'currentUserEmail' => 'DDD',
'token_persistence_path' => './',
'sandbox' => true,
'domainSuffix' => 'com',
'iamURL' => 'https://accounts.zoho.com/',
'apiBaseUrl' => 'https://sandbox.zohoapis.com',
];
$contacts = ZCRMModule::getInstance("Contacts")->getRecords();