fortifi/fortifi-api

This package is abandoned and no longer maintained. No replacement package was suggested.

Fortifi Business Platform API

7.57.0 2017-12-04 16:15 UTC

This package is not auto-updated.

Last update: 2019-03-26 14:55:50 UTC


README

Fortifi Business Platform Public API

##Example Usage

$api            = new FortifiApi();
$sampleEndpoint = SampleLoopEndpoint::bound($api);
$payload        = new SampleLoopPayload();
$payload->email = 'test@fortifi.co';
$payload->id    = 'TEST';
$payload->name  = 'Test Loop';

$loopResult = $sampleEndpoint->runLoop($payload);
$response   = SampleLoopResponse::create($loopResult);
var_dump_json($response);