API Reference

Get detailed information of a subscriber identified by an UID code. Notice that a subscriber's UID is globally unique. A contact identified by his/her email address may have more than one UID if he or she is added to more than one list.

Parameters


api_token string
Your API token. You can find it in your API main page when logged in.


list_uid string
Mail list's uid


uid string
Subsciber's uid

$client = new Acelle\Client(
    'https://app.sastamail.com/api/v1',
    '*|api_token|*'
);
$client->subscriber()->find('e31046fce3d83');
{
    "subscriber": {
        "uid":"5fd07b8b65284",
        "email":"[email protected]",
        "status":"subscribed",
        "source":null,
        "ip_address":null,
        "FIRST_NAME":"Ann",
        "LAST_NAME":"Anna",
        "CUSTOM_FIELD_1":"test"
    }
}