PHP code example of wildsurfer / infusionsoft-sync
1. Go to this page and download the library: Download wildsurfer/infusionsoft-sync library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
wildsurfer / infusionsoft-sync example snippets
$result = $sync->push(...);
$failed = $result['fail']; // Array of failed contacts
if ($failed->count() > 0) {
foreach ($failed->read() as $f) {
echo $f->getErrorMessage();
}
}