Client PHP for Smartfocus API using Guzzle and Guzzle Service Description
<?php
require_once 'vendor/autoload.php';
$smartfocusClient = new \L0rD59\Smartfocus\Client();
$openConnection = $smartfocusClient->openConnection([
'username' => 'YOUR_SMARTFOCUS_USERNAME',
'password' => 'YOUR_SMARTFOCUS_PASSWORD',
'apiKey' => 'YOUR_SMARTFOCUS_APIKEY',
]);
$members = $smartfocusClient->getMembers([
'memberUID' => 'EMAIL:[email protected]',
'token' => $openConnection['result'],
]);
$updateMember = $smartfocusClient->updateMember([
'memberUID' => 'EMAIL:[email protected]',
'token' => $openConnection['result'],
'dynContent' => [['key' => 'TITLE','value' => 'Mr.']]
]);
Please see "Operations" section in smartfocus-api-description.php file for available operations and arguments.