Contact PHP API
FluentCRM has the following PHP api functions so you can easily add/modify contacts. <?php $contactApi = FluentCrmApi(‘contacts’); /* * Find a contact by Email or Contact ID * You can find a contact by email or contact id (ContactId is not the user ID). * @return: false or Contact Model Object */ $contact = $contactApi->getContact($emailOrContactId);…