Skip to content

Latest commit

 

History

History
executable file
·
49 lines (29 loc) · 827 Bytes

README.md

File metadata and controls

executable file
·
49 lines (29 loc) · 827 Bytes

Acrelianews PHP API V2

PHP library that provides client functions for Acrelianews's REST API v2.

Acrelianews API docs

Requirements

Install

Via Composer

$ composer require ymbra/acrelianews-api

Example

Gets contact from list by email.

use Ymbra\Acrelianews\AcrelianewsContact;

$contactApi = new AcrelianewsContact('THE_API_KEY');

$listId = 1234;
$email = '[email protected]';

$response = $contactApi->getByEmail($listId,  $email);

echo json_decode($response)->email_address;

Testing

$ vendor/bin/phpunit

Contributing

Please see CONTRIBUTING for details.

License

Please see License File for more information.