-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.example.php
More file actions
25 lines (22 loc) · 850 Bytes
/
config.example.php
File metadata and controls
25 lines (22 loc) · 850 Bytes
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
<?php
/**
* Euromessage Client for PHP
* @license MIT
* @author Arda Kılıçdağı <arda@kilicdagi.com>
* @link https://github.com/ardakilic/euromessage-php
* @link https://arda.pw
*/
return [
'username' => 'euromessage_api_username',
'password' => 'euromessage_api_password',
'endpoints' => [
'base_uri' => 'https://api.relateddigital.com/resta/api/',
'get_token' => 'auth/login',
'create_update_member' => 'Member/InsertMemberDemography',
'create_update_member_data_warehouse' => 'Datawarehouse/InsertUpdateRowInDwTable',
'add_to_list' => 'Member/AddToSendLists',
'remove_from_list' => 'Member/RemoveFromSendLists',
'get_demographic_data' => 'Member/QueryMemberDemography',
'get_demographic_data_warehouse' => 'Datawarehouse/QueryMemberDatawarehouse',
],
];