Home / Subscriber / status

Subscriber ‐ status


Description:

store 1 or more conversions

The following errors can occur:
- The email parameter is required
- The email parameter has the wrong format

Example:

You should call this function as followed:
- rest/v2/subscriber/status?token=TOKEN&database=DATABASE_ID
&email=EMAIL

                require_once 'Rest.php';

                $username = 'my_username';
                $password = 'my_password';
                $database = '999';

                $rest = new Rest($username, $password, $database);
                $result = $rest->call('subscriber/status', [
                	'database' => 'DATABASE_ID',
'email' => 'EMAIL' ], 'GET'); var_dump($result);

Parameters:

The following parameters this method can/should be called with:

key: email
values: string, required
what: The email address where you want the status from

See:

The following items:
- user/login For the TOKEN.
- user/database For the DATABASE_ID