forked from ActiveCampaign/activecampaign-api-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Automation.class.php
51 lines (41 loc) · 1.39 KB
/
Automation.class.php
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
<?php
class AC_Automation extends ActiveCampaign {
public $version;
public $url_base;
public $url;
public $api_key;
function __construct($version, $url_base, $url, $api_key) {
$this->version = $version;
$this->url_base = $url_base;
$this->url = $url;
$this->api_key = $api_key;
}
function list_($params) {
$request_url = "{$this->url}&api_action=automation_list&api_output={$this->output}&{$params}";
$response = $this->curl($request_url);
return $response;
}
function contact_add($params, $post_data) {
$request_url = "{$this->url}&api_action=automation_contact_add&api_output={$this->output}";
if ($params) $request_url .= "&{$params}";
$response = $this->curl($request_url, $post_data);
return $response;
}
function contact_remove($params, $post_data) {
$request_url = "{$this->url}&api_action=automation_contact_remove&api_output={$this->output}";
if ($params) $request_url .= "&{$params}";
$response = $this->curl($request_url, $post_data);
return $response;
}
function contact_list($params) {
$request_url = "{$this->url}&api_action=automation_contact_list&api_output={$this->output}&{$params}";
$response = $this->curl($request_url);
return $response;
}
function contact_view($params) {
$request_url = "{$this->url}&api_action=automation_contact_view&api_output={$this->output}&{$params}";
$response = $this->curl($request_url);
return $response;
}
}
?>