L0rD59 / smartfocus-api-client

Client PHP for Smartfocus API using Guzzle and Guzzle Service Description

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Smartfocus PHP Client

Client PHP for Smartfocus API using Guzzle and Guzzle Service Description

Usage

<?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:member@mail.com',
  'token' => $openConnection['result'],
]);

$updateMember = $smartfocusClient->updateMember([
  'memberUID' => 'EMAIL:member@mail.com',
  'token' => $openConnection['result'],
  'dynContent' => [['key' => 'TITLE','value' => 'Mr.']]
]);

Please see "Operations" section in smartfocus-api-description.php file for available operations and arguments.

About

Client PHP for Smartfocus API using Guzzle and Guzzle Service Description


Languages

Language:PHP 100.0%