We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5aeab64 commit c8bc570Copy full SHA for c8bc570
src/MailerLite/Lists.php
@@ -10,22 +10,22 @@ public function __construct($apiKey)
10
parent::__construct($apiKey);
11
}
12
13
- public function getActive()
+ public function getActive($data = null)
14
{
15
$this->path .= 'active/';
16
- return $this->execute('GET');
+ return $this->execute('GET', $data);
17
18
19
- public function getUnsubscribed()
+ public function getUnsubscribed($data = null)
20
21
$this->path .= 'unsubscribed/';
22
23
24
25
- public function getBounced()
+ public function getBounced($data = null)
26
27
$this->path .= 'bounced/';
28
29
30
31
0 commit comments