c6digital / engaging-networks-php
Installs: 676
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/c6digital/engaging-networks-php
Requires
- illuminate/http: ^10.0 || ^11.0 | ^12.0
README
Installation
composer require c6digital/engaging-networks-php
Usage
Create a new EngagingNetworks
client.
use C6Digital\EngagingNetworks\EngagingNetworks; $client = new EngagingNetworks('my-api-key');
Authenticate and retrieve a temporary authorization token.
$client->authenticate();
Make a page request
$client->pageRequest(pageId: 12345, data: [ // ... ]);
Retrieve a Supporter by ID
$client->getSupporterById(supporterId: 12345, parameters: [ // ... ]);