wwwroth / contactspace-sdk
A quick, simple PHP SDK for interfacing with contactSPACE's JSON API.
1.6
2020-08-11 19:43 UTC
Requires
- guzzlehttp/guzzle: ^6.0
- nesbot/carbon: ^2.0
This package is not auto-updated.
Last update: 2025-04-16 18:34:53 UTC
README
A quick, simple PHP SDK for interfacing with contactSPACE's API. Only JSON ?outputtype is supported.
Installing
composer require wwwroth/contactspace-sdk
Example Usage
$client = new \wwwroth\contactspace\Client([ 'api_key' => '<APIKEY>' ]); // 2.1 Add a Dataset $client->createDataSet([ 'initiativeid' => 5914, 'datasetname' => 'testdata', 'active' => 1 ]); // 2.7 Get Users $client->getUsers();