Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 997 Bytes

Readme.md

File metadata and controls

33 lines (25 loc) · 997 Bytes

Smartfocus PHP Client

Client PHP for Smartfocus API using Guzzle and Guzzle Service Description

Usage

<?php

require_once 'vendor/autoload.php';

$smartfocusClient = new \Pascal76\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.