ymbra/acrelianews-api

PHP library for Acrelianews API v2

0.2.0 2024-09-18 14:42 UTC

This package is auto-updated.

Last update: 2025-04-18 16:10:51 UTC


README

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 = 'test@example.com';

$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.