PHP code example of contactlab / contacthub-sdk-php
1. Go to this page and download the library: Download contactlab/contacthub-sdk-php 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/ */
contactlab / contacthub-sdk-php example snippets
use ContactHub\ContactHub;
$contactHub = new ContactHub('TOKEN', 'WORKSPACE_ID', 'NODE_ID');
$customer = [
'externalId' => 'externalId',
'base' => [
'firstName' => 'First Name',
'lastName' => 'Lastddd Name',
'contacts' => [
'email' => '[email protected] '
]
],
'extra' => 'extra string',
'tags' => [
'auto' => ['autotag'],
'manual' => ['manualtag']
],
'enabled' => true
];
$contactHub->addCustomer($customer);
use ContactHub\ContactHub;
use ContactHub\GetCustomersOptions;
$contactHub = new ContactHub('TOKEN', 'WORKSPACE_ID', 'NODE_ID');
$options = GetCustomersOptions::create()
->withExternalId('58ede74e05d14')
->withFields(['base.firstName']);
$customers = $contactHub->getCustomers($options);
use ContactHub\ContactHub;
$contactHub = new ContactHub('TOKEN', 'WORKSPACE_ID', 'NODE_ID');
$event = [
'type' => EventType::VIEWED_PAGE,
'context' => EventContext::MOBILE,
'properties' => [
'url' => 'http://ecommerce.event.url'
],
'date' => date('c')
];
$contactHub->addEventByCustomerId('a_customer_id', $event);
use ContactHub\ContactHub;
use ContactHub\GetCustomersOptions;
use ContactHub\QueryBuilder;
use ContactHub\QueryBuilder\CombinedQuery;
use ContactHub\QueryBuilder\Condition\AtomicCondition;
use ContactHub\QueryBuilder\Condition\CompositeCondition;
use ContactHub\QueryBuilder\SimpleQuery;
$simpleWithAtomicCondition = SimpleQuery::with(AtomicCondition::where('firstName' , 'IS_NOT_NULL'));
$simpleWithCompositeCondition = SimpleQuery::with(
CompositeCondition::where(
'OR',
AtomicCondition::where('base.lastName', 'IS', 'Giovanni'),
AtomicCondition::where('base.lastName', 'IS', 'Giacomo')
)
);
$combined = CombinedQuery::with('OR', $simpleWithCompositeCondition, $simpleWithAtomicCondition);
$query = QueryBuilder::createQuery($combined, 'named_query');
$contactHub = new ContactHub('TOKEN', 'WORKSPACE_ID', 'NODE_ID');
$options = GetCustomersOptions::create()->withQuery($query->build());
$customers = $contactHub->getCustomers($options);