c6digital/engaging-networks-php

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

Maintainers

Package info

github.com/c6digital/engaging-networks-php

pkg:composer/c6digital/engaging-networks-php

Statistics

Installs: 961

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v0.4.1 2025-10-16 16:30 UTC

This package is auto-updated.

Last update: 2026-03-16 17:16:09 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: [
    // ...
]);