c6digital/engaging-networks-php

There is no license information available for the latest version (v0.4.0) of this package.

Installs: 676

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/c6digital/engaging-networks-php

v0.4.0 2025-09-29 17:26 UTC

This package is auto-updated.

Last update: 2025-09-29 17:27:12 UTC


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: [
    // ...
]);