jrsaunders / get-response
Get Response API
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/jrsaunders/get-response
Requires
- php: >=7.1
This package is auto-updated.
Last update: 2025-09-29 02:42:48 UTC
README
Get Response API
Example of use:
$gr = new \GetResponse\GetResponse('MyAPIkey','my360domain.com',null);
$contact = new \GetResponse\ValueObject\ContactByEmail('auser@emailaddress.com');
echo $contact->getName();
Create a Contact:
$gr = new \GetResponse\GetResponse('MyAPIkey','my360domain.com','iR');
$newContact = ( new \GetResponse\ValueObject\Contact() )->setName( 'John Smith' )->setEmail( 'john@smith.com' );
$gr->getContacts()->createByContact( $newContact );