-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathclient.py
More file actions
1722 lines (1089 loc) · 43 KB
/
client.py
File metadata and controls
1722 lines (1089 loc) · 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import csv
import json
import pdb
import requests
import time
from datetime import datetime
class IterableApi():
"""
This is a python wrapper for the Iterable API
We are using the 'Requests' HTTP python library, which I
have found very flexible to accomodate the various methods
that customers leverage to interact with our API. 'Requests'
documentation is also excellent, enabling our team to
quickly update this wrapper to support a wide range of use cases.
"""
def __init__(self, api_key):
"""
This preforms the necessary initialization parameters for the
Iterable API wrapper. It stores the base URI, the API key for the
project, and headers that shoudl be consistent across all requests.
"""
self.api_key = api_key
self.base_uri = "https://api.iterable.com"
self.headers = {
"Content-type": "application/json",
"Api-Key": self.api_key
}
def api_call(self, call, method, params=None, headers=None, data=None,
json=None):
"""
This is our generic api call function. We will route all calls except
requests that do not return JSON ('Export' and 'Experiment Metrics' are
examples where this is the case). This is beneficial because:
1. Allows for easier debugging if a request fails
2. Currently, Iterable only needs the API key from a security
standpoint. In the future, if it were to require an
access token for each request we could easily manage the granting
and expiration management of such a token.
"""
# params(optional) Dictionary or bytes to be sent in the query string for the Request.
if params is None:
params = {}
# data- dict or list of tuples to be sent in body of Request
if data is None:
data = {}
# json- data to be sent in body of Request
if json is None:
json ={}
# make the request following the 'requests.request' method
r = requests.request(method=method, url=self.base_uri+call, params=params,
headers=self.headers, data=data, json=json)
response = {
"body": r.json(),
"code": r.status_code,
"headers": r.headers,
"url": r.url
}
return response
def export_data_api(self, call,
params, path,
chunk_size=None,
return_response_object=None):
r = requests.request(method="GET", url=self.base_uri+call, params=params,
headers=self.headers, stream=True)
if r.status_code == 200:
if return_response_object is (not None and True):
return r
if "csv" in r.url:
local_filename = 'iterable_' + params['dataTypeName'] + str(round(time.time())) + '.csv'
if "experiments" in r.url:
local_filename = 'iterable_experiment_ids_' + str(",".join(list(params.values()))) + "_" + str(round(time.time())) + '.csv'
if "userEvents" in r.url:
local_filename = 'iterable_user_events' + str(round(time.time())) + '.csv'
if "json" in r.url:
local_filename = 'iterable_' + params['dataTypeName'] + str(round(time.time())) + '.json'
with open(path+local_filename, 'wb') as write_file:
for chunk in r.iter_content(chunk_size=chunk_size):
if chunk:
write_file.write(chunk)
return True
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
Iterable Campaign Requests
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
def list_campaign_metadata(self):
call="/api/campaigns"
return self.api_call(call=call, method="GET")
def create_campaign(self, name, list_ids, template_id,
suppression_list_ids=None, send_at=None,
send_mode=None, start_time_zone=None,
default_time_zone=None, data_fields=None):
call = "/api/campaigns/create"
payload ={}
payload["name"]= str(name)
if isinstance(list_ids, list):
payload["listIds"]= list_ids
else:
raise TypeError('ListIds are not in the required Array format')
payload["templateId"]= template_id
if suppression_list_ids is not None:
payload["supressionListIds"]= suppression_list_ids
if send_at is not None:
payload["sendAt"]= str(send_at)
if send_mode is not None:
payload["sendMode"]= str(send_mode)
if start_time_zone is not None:
payload["startTimeZone"]= str(start_time_zone)
if default_time_zone is not None:
payload["defaultTimeZone"]= str(default_time_zone)
if data_fields is not None:
payload["dataFields"]= data_fields
return self.api_call(call=call, method="POST", json=payload)
def get_campaign_metrics(self, campaign_id, start_date_time=None,
end_date_time=None, use_new_format=None):
call= "/api/campaigns/metrics"
payload ={}
if isinstance(campaign_id, list):
if len(campaign_id)>=1:
payload["campaignId"]= campaign_id
else:
raise ValueError('You need to pass in at least 1 campaign id')
else:
raise TypeError('campaign ids are not stored in list format')
if isinstance(start_date_time, datetime.datetime):
payload["startDateTime"]= start_date_time
else:
raise TypeError('Start date is in incorrect format')
if isinstance(end_date_time, datetime.datetime):
payload["endDateTime"]= end_date_time
else:
raise TypeError('End date is in incorrect format')
if use_new_format is not None:
payload["useNewFormat"]= use_new_format
return self.api_call(call=call, method="GET", params=payload)
def get_child_campaigns(self, campaign_id):
call = "/api/campaigns/recurring/"+str(campaign_id)+"/childCampaigns"
return self.api_call(call=call, method="GET")
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
Iterable Channel Requests
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
def get_channels(self):
call="/api/channels"
return self.api_call(call=call, method="GET")
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
Iterable Commerce Reqeusts
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
def track_purchase(self, user, items, total, purchase_id= None, campaign_id=None,
template_id=None, created_at=None,
data_fields=None):
"""
The 'purchase_id' argument maps to 'id' for this API endpoint.
This name is used to distinguish it from other instances where
'id' is a part of the API request with other Iterable endpoints.
"""
call="/api/commerce/trackPurchase"
payload ={}
if isinstance(user, dict):
payload["user"]= user
else:
raise TypeError('user key is not in Dictionary format')
if isinstance(items, list):
payload["items"]= items
else:
raise TypeError('items are not in Array format')
if isinstance(total, float):
payload["total"]= total
else:
raise TypeError('total is not in correct format')
if purchase_id is not None:
payload["id"]= str(purchase_id)
if campaign_id is not None:
payload["campaignId"]= campaign_id
if template_id is not None:
payload["templateId"]= template_id
if created_at is not None:
payload["createdAt"]= created_at
if data_fields is not None:
payload["dataFields"]= data_fields
return self.api_call(call=call, method="POST", json=payload)
def update_cart(self, user=None, items=None):
call="/api/commerce/updateCart"
payload ={}
if isinstance(user, dict):
payload["user"]= user
else:
raise Exception('user is not in Dictionary format')
if isinstance(items, list):
payload["items"]= items
else:
raise Exception('items are not in Array format')
return self.api_call(call=call, method="POST", json=payload)
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
Iterable Email Requests
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
def send_email(self, campaign_id, recipient_email,
message_medium, data_fields=None,
send_at=None, allow_repeat_marketing_sends=None,
metadata=None):
call="/api/email/target"
payload ={}
payload["campaignId"]= campaign_id
payload["recipientEmail"]= str(recipient_email)
if isinstance(message_medium, dict):
payload["messageMedium"]= message_medium
else:
raise Exception('message medium is not in Dictionary format')
if data_fields is not None:
payload["dataFields"]= data_fields
if send_at is not None:
payload["sendAt"]= send_at
if allow_repeat_marketing_sends is not None:
payload["allowRepeatMarketingSends"]= allow_repeat_marketing_sends
if metadata is not None:
payload["metadata"]= metadata
return self.api_call(call=call, method="POST", json=payload)
def view_email_in_browser(self, email, message_id):
call = "/api/email/viewInBrowser"
payload ={}
payload["email"]= str(email)
payload["messageId"]= str(message_id)
return self.api_call(call=call, method="GET", params=payload)
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
Iterable Event Requests
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
def get_events(self, email, limit=None):
call="/api/events/"+str(email)
payload={}
if limit is not None and limit <= 200:
payload["limit"]= limit
return self.api_call(call=call, method="GET", params=payload)
def consume_in_app_notification(self, message_id, email=None,
user_id=None, button_index=None):
call = "/api/events/inAppConsume"
payload ={}
payload["messageId"]= str(message_id)
if email is not None:
payload["email"]=email
if user_id is not None:
payload["userId"]=user_id
if button_index is not None:
payload["buttonIndex"]= button_index
return self.api_call(call=call, method="POST", json=payload)
def track_event(self, event_name, event_id=None, email=None,
created_at=None, data_fields=None, user_id=None,
campaign_id=None,template_id=None):
call="/api/events/track"
payload={}
payload["eventName"]= str(event_name)
if event_id is not None:
payload["id"]= str(event_id)
if email is not None:
payload["email"]=email
if created_at is not None:
payload["createdAt"]=created_at
if data_fields is not None:
payload["dataFields"]= data_fields
if user_id is not None:
payload["userId"]=user_id
if campaign_id is not None:
payload["campaignId"]= campaign_id
if template_id is not None:
payload["templateId"]= template_id
return self.api_call(call=call, method="POST", json=payload)
def track_in_app_click(self, message_id, email=None,
user_id=None, button_index=None):
call="/api/events/trackInAppClick"
payload={}
payload["messageId"]= str(message_id)
if email is not None:
payload["email"]= email
if user_id is not None:
payload["userId"]=user_id
if button_index is not None:
payload["buttonIndex"]=button_index
return self.api_call(call=call, method="POST", json=payload)
def track_in_app_open(self, message_id, email=None,
user_id=None, button_index=None):
call="/api/events/trackInAppOpen"
payload={}
payload["messageId"]=str(message_id)
if email is not None:
payload["email"]= email
if user_id is not None:
payload["userId"]=user_id
if button_index is not None:
payload["buttonIndex"]=button_index
return self.api_call(call=call, method="POST", json=payload)
def track_push_open(self, campaign_id, email=None, user_id=None,
template_id=None, message_id=None, created_at=None,
data_fields=None):
call="/api/events/trackPushOpen"
payload={}
payload["CampaignId"]= campaign_id
if email is not None:
payload["email"]=email
if user_id is not None:
payload["userId"]=user_id
if template_id is not None:
payload["templateId"]=template_id
if message_id is not None:
payload["messageId"]=message_id
if created_at is not None:
payload["createdAt"]= created_at
if data_fields is not None:
payload["dataFields"]=data_fields
return self.api_call(call=call, method="POST", json=payload)
def track_web_push_click(self, email=None, user_id=None,
message_id=None, campaign_id=None,
template_id=None):
call ="/api/events/trackWebPushClick"
payload={}
payload["messageId"]=str(message_id)
if email is not None:
payload["email"]=email
if user_id is not None:
payload["userId"]=user_id
if campaign_id is not None:
payload["campaignId"]=campaign_id
if template_id is not None:
payload["templateId"]=template_id
return self.api_call(call=call, method="POST", json=payload)
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
Iterable Experiment Requests
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
def get_experiment_metrics(self, path, return_response_object= None,
experiment_id=None, campaign_id=None,
start_date_time=None, end_date_time=None
):
"""
This endpoint doesn't return a JSON object, instead it returns
a series of rows, each its own object. Given this setup, it makes
sense to treat it how we handle our Bulk Export reqeusts.
Arguments:
path: the directory on your computer you wish the file to be downloaded into.
return_response_object: recommended to be set to 'False'. If set to 'True',
will just return the response object as defined by the 'python-requests' module.
"""
call="/api/experiments/metrics"
if isinstance(return_response_object, bool) is False:
raise ValueError("'return_iterator_object'parameter must be a boolean")
payload={}
if experiment_id is not None:
payload["experimentId"]=experiment_id
if campaign_id is not None:
payload["campaignId"]=campaign_id
if start_date_time is not None:
payload["startDateTime"]=start_date_time
if end_date_time is not None:
payload["endDateTime"]=end_date_time
return self.export_data_api(call=call, path=path, params=payload)
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
Export Requests
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
def export_data_csv(self, data_type_name=None, date_range=None,
delimiter=None, start_date_time=None,
end_date_time=None, omit_fields=None,
only_fields=None, campaign_id=None,
path=None):
call="/api/export/data.csv"
payload={}
if data_type_name is not None:
payload["dataTypeName"]= data_type_name
if date_range is not None:
payload["range"]= date_range
if delimiter is not None:
payload["delimiter"]= delimiter
if start_date_time is not None:
payload["startDateTime"]= start_date_time
if end_date_time is not None:
payload["endDateTime"]= end_date_time
if omit_fields is not None:
payload["omitFields"]= omit_fields
if only_fields is not None and isinstance(only_fields, list):
payload["onlyFields"]= only_fields
if campaign_id is not None:
payload["campaignId"]= campaign_id
return self.export_data_api(call=call, params=payload, path=path)
def export_data_json(self, return_response_object,
chunk_size=1024,
path=None,
data_type_name=None, date_range=None,
delimiter=None, start_date_time=None,
end_date_time=None, omit_fields=None,
only_fields=None, campaign_id=None):
"""
Custom Keyword arguments:
1. return_response_object:
if set to 'True', the 'r' response object will be returned. The
benefit of this is that you can manipulate the data in any way you
want. If set to false, we will write the response to a file where each
Iterable activity you're exporting is a single-line JSON object.
2. chunk_size:
Chunk size is used as a paremeter in the r.iter_content(chunk_size) method
that controls how big the response chunks are (in bytes). Depending on the
device used to make the request, this might change depending on the user.
Default is set to 1 MB.
3. path:
Allows you to choose the directory where the file is downloaded into.
Example: "/Users/username/Desktop/"
If not set the file will download into the current directory.
"""
call="/api/export/data.json"
# make sure correct ranges are being used
date_ranges = ["Today", "Yesterday", "BeforeToday", "All"]
if isinstance(return_response_object, bool) is False:
raise ValueError("'return_iterator_object'parameter must be a boolean")
if chunk_size is not None and isinstance(chunk_size, int):
pass
else:
raise ValueError("'chunk_size' parameter must be a integer")
payload={}
if data_type_name is not None:
payload["dataTypeName"]= data_type_name
if date_range is not None and date_range in date_ranges:
payload["range"]= date_range
if start_date_time is not None:
payload["startDateTime"]= start_date_time
if end_date_time is not None:
payload["endDateTime"]= end_date_time
if omit_fields is not None:
payload["omitFields"]= omit_fields
if only_fields is not None and isinstance(only_fields, list):
payload["onlyFields"]= only_fields
if campaign_id is not None:
payload["campaignId"]= campaign_id
return self.export_data_api(call=call, chunk_size=chunk_size,
params=payload, path=path,
return_response_object=return_response_object)
def export_user_events(self, email, include_custom_events,
path, return_response_object= None):
call ="/api/export/userEvents"
if isinstance(include_custom_events, bool) is False:
raise ValueError("'include_custom_events' parameter must be a boolean")
payload = {}
payload["email"]= str(email)
payload["includeCustomEvents"] = include_custom_events
return self.export_data_api(call=call, params=payload, path=path)
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
Iterable inApp Requests
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
def get_in_app_messages(self, email, count, user_id=None,
platform=None, sdk_version=None):
call = "/api/inApp/getMessages"
payload={}
payload["email"]=str(email)
payload["count"]= count
if user_id is not None:
payload["userId"]=str(user_id)
if platform is not None:
payload["platform"]=str(platform)
if sdk_version is not None:
payload["SDKVersion"]= sdk_version
return self.api_call(call=call, method="GET", params=payload)
def send_in_app_notification(self, campaign_id, recipient_email,
message_medium, data_fields=None,
send_at=None,
allow_repeat_marketing_sends=None):
call="/api/inApp/target"
payload={}
payload["campaignId"]=campaign_id
payload["recipientEmail"]=recipient_email
if isinstance(message_medium, dict):
payload["messageMedium"]= message_medium
else:
raise Exception('message medium is not in Dictionary format')
if data_fields is not None:
payload["dataFields"]=data_fields
if send_at is not None:
payload["sendAt"]=send_at
if allow_repeat_marketing_sends is not None:
payload["allowRepeatMarketingSends"]= allow_repeat_marketing_sends
return self.api_call(call=call, method="POST", json=payload)
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
Iterable List requests
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
def get_lists(self):
call = "/api/lists"
return self.api_call(call=call, method="GET")
def create_static_list(self, list_name):
call = "/api/lists"
payload ={}
payload["name"]= str(list_name)
return self.api_call(call=call, method="POST", json=payload)
def delete_static_list(self, list_id):
call = "/api/lists/"+str(list_id)
return self.api_call(call=call, method="DELETE")
def count_of_users_in_list(self, list_id):
call = "/api/lists/"+str(list_id)+"/size"
return self.api_call(call=call, method="GET")
def get_users_in_list(self, list_id):
call = "/api/lists/getUsers"
payload ={}
payload["listId"]= list_id
return self.api_call(call=call, method="GET", params=payload)
def add_subscribers_to_list(self, list_id, subscribers):
call = "/api/lists/subscribe"
payload = {}
payload["listId"]= list_id
if isinstance(subscribers, list):
payload["subscribers"]= subscribers
else:
raise TypeError('subscribers are not stored in list format')
return self.api_call(call=call, method="POST", json=payload)
def remove_subscribers_to_list(self, list_id, subscribers,
campaign_id=None, channel_unsubscribe=False):
call = "/api/lists/unsubscribe"
payload = {}
payload["listId"]= list_id
if isinstance(subscribers, list):
payload["subscribers"]= subscribers
else:
raise TypeError('subscribers are not stored in list format')
if campaign_id is not None:
payload["campaignId"]= campaign_id
if channel_unsubscribe is not None:
payload["channelUnsubscribe"]= channel_unsubscribe
return self.api_call(call=call, method="POST", json=payload)
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
Iterable MessageType Requests
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
def list_message_types(self):
call="/api/messageTypes"
return self.api_call(call=call, method="GET")
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
Iterable Metadata Requests
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
def list_available_tables(self):
call="/api/metadata"
return self.api_call(call=call, method="GET")
def delete_all_metadata_from_table(self, table):
call="/api/metadata"+str(table)
return self.api_call(call=call, method="DELETE")
def list_keys_in_table(self, table, next_marker=None):
call= "/api/metadata/"+str(table)
payload ={}
if next_marker is not None:
payload["nextMarket"]=next_marker
return self.api_call(call=call, method="GET", params=payload)
def delete_single_metadata_key_value(self, table, key):
call="/api/metadata/"+ str(table) + "/" + str(key)
return self.api_call(call=call, method="DELETE")
def get_single_metadata_key_value(self, table, key):
call="/api/metadata/"+ str(table) + "/" + str(key)
return self.api_call(call=call, method="GET")
def create_or_replace_metadata(self, table, key, value):
call="/api/metadata/"+ str(table) + "/" + str(key)
payload={}
if isinstance(value, dict):
payload["value"]= value
else:
raise TypeError('value is not in object format')
return self.api_call(call=call, method="PUT", json=payload)
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
Iterable Push Requests
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
def send_push_notification(self, campaign_id, recipient_email,
message_medium, data_fields=None,
send_at=None,
allow_repeat_marketing_sends=None,
metadata=None):
call="/api/push/target"
payload={}
payload["campaignId"]= campaign_id
payload["recipientEmail"]= recipient_email
if isinstance(message_medium, dict):
payload["messageMedium"]= message_medium
else:
raise Exception('message medium is not in Dictionary format')
if data_fields is not None:
payload["dataFields"]= data_fields
if send_at is not None:
payload["sendAt"]= send_at
if allow_repeat_marketing_sends is not None:
payload["allowRepeatMarketingSends"]= allow_repeat_marketing_sends
if metadata is not None:
payload["metadata"]= metadata
return self.api_call(call=call, method="POST", json=payload)
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
Iterable SMS Requests
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
def send_sms_message(self, campaign_id, recipient_email,
message_medium, data_fields=None,
send_at=None,
allow_repeat_marketing_sends=None,
):
call="/api/sms/target"
payload={}
payload["campaignId"]= campaign_id
payload["recipientEmail"]= recipient_email
if isinstance(message_medium, dict):
payload["messageMedium"]= message_medium
else:
raise Exception('message medium is not in Dictionary format')
if data_fields is not None:
payload["dataFields"]= data_fields
if send_at is not None:
payload["sendAt"]= send_at
if allow_repeat_marketing_sends is not None:
payload["allowRepeatMarketingSends"]= allow_repeat_marketing_sends
return self.api_call(call=call, method="POST", json=payload)
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
Iterable Template Requests
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
def get_templates(self, template_type=None,
message_medium=None,
start_date_time=None,
end_date_time=None):
call="/api/templates"
payload={}
iterable_template_types = ["Base", "Blast", "Triggered", "Workflow"]
iterable_message_mediums = ["Email", "Push", "InApp", "SMS"]
if template_type is not None and template_type in iterable_template_types:
payload["templateType"]= template_type
elif template_type is not None and template_type not in iterable_template_types:
raise Exception("It looks like you listed an incorrect template type '%s'" % template_type)
if message_medium is not None and message_medium in iterable_message_mediums:
payload["messageMedium"]= message_medium
elif message_medium is not None and message_medium not in iterable_message_mediums:
raise Exception("It looks like you listed an incorrect message medium '%s'" % message_medium)
if start_date_time is not None:
payload["startDateTime"]= start_date_time
if end_date_time is not None:
payload["endDateTime"]= end_date_time
return self.api_call(call = call, method = "GET", params = payload)
def get_email_template_by_templateId(self, template_id, locale=None):
call="/api/templates/email/get"
payload={}
payload["templateId"]=template_id
if locale is not None:
payload["locale"]= locale
return self.api_call(call=call, method="GET", params=payload)
def update_email_template(self, template_id, metadata=None,
name=None, from_name=None, from_email=None,
reply_to_email=None, subject=None,
preheader_text=None, cc_emails=None,
bcc_emails=None, html=None,
plain_text=None,