credy/yii2-getresponse

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

Yii2 getresponse.com api client component

Installs: 1

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Forks: 0

pkg:composer/credy/yii2-getresponse

1.7.2 2025-11-10 17:55 UTC

This package is auto-updated.

Last update: 2025-11-10 16:09:56 UTC


README

Installation:

Via composer: composer require credy/yii2-getresponse

Usage:

$client = new \credy\getresponse\Client([
   'apiKey' => 'API_KEY',
   'domain' => 'example.org', # domain for enterprise users
]);

$client->addContact('asd123', 'user@email.com');

Available methods:

searchContact('user@email.com'); // Gets single contact ID
searchContactInAllLists('user@email.com'); // Gets an array of contact IDs
addContact('asd123', 'user@email.com', ['qwer12' => 'super awesome value']); // campaign ID, email, custom fields
updateCustomFields('asd123', ['qwer12' => 'super awesome value']); // contact ID, custom fields
deleteContact('asd123'); // Removes contact by ID