-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathApiManagerInterface.php
More file actions
63 lines (53 loc) · 1.43 KB
/
ApiManagerInterface.php
File metadata and controls
63 lines (53 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
/*
* This file is part of the enhavo package.
*
* (c) WE ARE INDEED GmbH
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Enhavo\Component\CleverReach;
interface ApiManagerInterface
{
/**
* Creates a subscriber.
*/
public function createSubscriber(
string $email,
int $groupId,
bool $active = false,
array $attributes = [],
array $globalAttributes = [],
);
/**
* Returns a subscriber.
*/
public function getSubscriber(string $email, ?int $groupId = null);
/**
* Sets the active status of a subscriber.
*
* @param bool $active
*/
public function setSubscriberStatus(string $email, int $groupId, $active = true);
/**
* Triggers the Double-Opt-In email for a subscriber.
*/
public function triggerDoubleOptInEmail(string $email, int $formId, array $options = []);
/**
* Triggers the Double-Opt-Out email for a subscriber.
*/
public function triggerDoubleOptOutEmail(string $email, int $formId, array $options = []);
/**
* Deletes a subscriber.
*/
public function deleteSubscriber(string $email, int $groupId);
/**
* Get group by given id
*/
public function getGroup(int $groupId);
/**
* Retrieve a list of all groups.
*/
public function getGroups();
}