forked from campaignmonitor/createsend-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcsrest_general.php
executable file
·96 lines (88 loc) · 3.28 KB
/
csrest_general.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?php
require_once dirname(__FILE__).'/class/base_classes.php';
/**
* Class to access general resources from the create send API.
* @author tobyb
*
*/
class CS_REST_General extends CS_REST_Wrapper_Base {
/**
* Constructor.
* @param $api_key string Your api key (Ignored for get_apikey requests)
* @param $protocol string The protocol to use for requests (http|https)
* @param $debug_level int The level of debugging required CS_REST_LOG_NONE | CS_REST_LOG_ERROR | CS_REST_LOG_WARNING | CS_REST_LOG_VERBOSE
* @param $host string The host to send API requests to. There is no need to change this
* @param $log CS_REST_Log The logger to use. Used for dependency injection
* @param $serialiser The serialiser to use. Used for dependency injection
* @param $transport The transport to use. Used for dependency injection
* @access public
*/
function CS_REST_Wrapper_Base(
$api_key,
$protocol = 'https',
$debug_level = CS_REST_LOG_NONE,
$host = 'api.createsend.com',
$log = NULL,
$serialiser = NULL,
$transport = NULL) {
$this->CS_REST_Wrapper_Base($api_key, $protocol, $debug_level, $host, $log, $serialiser, $transport);
}
/**
* Gets an array of valid timezones
* @access public
* @return CS_REST_Wrapper_Result A successful response will be an object of the form
* array<string>(timezones)
*/
function get_timezones() {
return $this->get_request($this->_base_route.'timezones.json');
}
/**
* Gets the current date in your accounts timezone
* @access public
* @return CS_REST_Wrapper_Result A successful response will be an object of the form
* {
* 'SystemDate' => string The current system date in your accounts timezone
* }
*/
function get_systemdate() {
return $this->get_request($this->_base_route.'systemdate.json');
}
/**
* Gets an array of valid countries
* @access public
* @return CS_REST_Wrapper_Result A successful response will be an object of the form
* array<string>(countries)
*/
function get_countries() {
return $this->get_request($this->_base_route.'countries.json');
}
/**
* Gets your API key
* @param string $username Your username
* @param string $password Your password
* @param string $site_url The url you use to login from
* @access public
* @return CS_REST_Wrapper_Result A successful response will be an object of the form
* {
* 'ApiKey' => string Your api key
* }
*/
function get_apikey($username, $password, $site_url) {
return $this->get_request($this->_base_route.'apikey.json?siteurl='.$site_url,
array('credentials' => $username.':'.$password));
}
/**
* Gets an array of clients
* @access public
* @return CS_REST_Wrapper_Result A successful response will be an object of the form
* array(
* {
* 'ClientID' => The clients API ID,
* 'Name' => The clients name
* }
* )
*/
function get_clients() {
return $this->get_request($this->_base_route.'clients.json');
}
}