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
Requires
- packaged/api: ~1.0.0
- packaged/config: ~1.0
- packaged/helpers: ~1.0
- packaged/rwd: ~0.0
Requires (Dev)
- phpunit/phpunit: ~4.6
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);