You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-3Lines changed: 10 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -329,20 +329,27 @@ Before you get started with creating your PHP application, you need to register
329
329
330
330
```php
331
331
/*
332
-
* autoRefreshFields
332
+
* autoRefreshFields (default value is false)
333
333
*true - all the modules' fields will be auto-refreshed in the background, every hour.
334
334
* false - the fields will not be auto-refreshed in the background. The user can manually delete the file(s) or refresh the fields using methods from ModuleFieldsHandler(com\zoho\crm\api\util\ModuleFieldsHandler)
335
335
*
336
-
* pickListValidation
336
+
* pickListValidation (default value is true)
337
337
* A boolean field that validates user input for a pick list field and allows or disallows the addition of a new value to the list.
338
338
* true - the SDK validates the input. If the value does not exist in the pick list, the SDK throws an error.
339
339
* false - the SDK does not validate the input and makes the API request with the user’s input to the pick list
340
+
*
341
+
* enableSSLVerification (default value is true)
342
+
* A boolean field to enable or disable curl certificate verification
343
+
* true - the SDK verifies the authenticity of certificate
344
+
* false - the SDK skips the verification
340
345
*/
341
346
$autoRefreshFields = false;
342
347
343
348
$pickListValidation = false;
344
349
345
-
$sdkConfig = (new SDKConfigBuilder())->setAutoRefreshFields($autoRefreshFields)->setPickListValidation($pickListValidation)->build();
350
+
$enableSSLVerification = true;
351
+
352
+
$sdkConfig = (new SDKConfigBuilder())->setAutoRefreshFields($autoRefreshFields)->setPickListValidation($pickListValidation)->setSSLVerification($enableSSLVerification)->build();
346
353
```
347
354
348
355
- Create an instance of RequestProxy containing the proxy properties of the user.
0 commit comments