forked from square/square-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloyalty_api.py
More file actions
991 lines (862 loc) · 40.8 KB
/
loyalty_api.py
File metadata and controls
991 lines (862 loc) · 40.8 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
# -*- coding: utf-8 -*-
from deprecation import deprecated
from square.api_helper import APIHelper
from square.http.api_response import ApiResponse
from square.api.base_api import BaseApi
from apimatic_core.request_builder import RequestBuilder
from apimatic_core.response_handler import ResponseHandler
from apimatic_core.types.parameter import Parameter
from square.http.http_method_enum import HttpMethodEnum
from apimatic_core.authentication.multiple.single_auth import Single
class LoyaltyApi(BaseApi):
"""A Controller to access Endpoints in the square API."""
def __init__(self, config):
super(LoyaltyApi, self).__init__(config)
def create_loyalty_account(self,
body):
"""Does a POST request to /v2/loyalty/accounts.
Creates a loyalty account. To create a loyalty account, you must
provide the `program_id` and a `mapping` with the `phone_number` of
the buyer.
Args:
body (CreateLoyaltyAccountRequest): An object containing the
fields to POST for the request. See the corresponding object
definition for field details.
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/loyalty/accounts')
.http_method(HttpMethodEnum.POST)
.header_param(Parameter()
.key('Content-Type')
.value('application/json'))
.body_param(Parameter()
.value(body))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.body_serializer(APIHelper.json_serialize)
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()
def search_loyalty_accounts(self,
body):
"""Does a POST request to /v2/loyalty/accounts/search.
Searches for loyalty accounts in a loyalty program.
You can search for a loyalty account using the phone number or
customer ID associated with the account. To return all loyalty
accounts, specify an empty `query` object or omit it entirely.
Search results are sorted by `created_at` in ascending order.
Args:
body (SearchLoyaltyAccountsRequest): An object containing the
fields to POST for the request. See the corresponding object
definition for field details.
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/loyalty/accounts/search')
.http_method(HttpMethodEnum.POST)
.header_param(Parameter()
.key('Content-Type')
.value('application/json'))
.body_param(Parameter()
.value(body))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.body_serializer(APIHelper.json_serialize)
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()
def retrieve_loyalty_account(self,
account_id):
"""Does a GET request to /v2/loyalty/accounts/{account_id}.
Retrieves a loyalty account.
Args:
account_id (str): The ID of the [loyalty
account](entity:LoyaltyAccount) to retrieve.
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/loyalty/accounts/{account_id}')
.http_method(HttpMethodEnum.GET)
.template_param(Parameter()
.key('account_id')
.value(account_id)
.should_encode(True))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()
def accumulate_loyalty_points(self,
account_id,
body):
"""Does a POST request to /v2/loyalty/accounts/{account_id}/accumulate.
Adds points earned from a purchase to a [loyalty
account]($m/LoyaltyAccount).
- If you are using the Orders API to manage orders, provide the
`order_id`. Square reads the order
to compute the points earned from both the base loyalty program and an
associated
[loyalty promotion]($m/LoyaltyPromotion). For purchases that qualify
for multiple accrual
rules, Square computes points based on the accrual rule that grants
the most points.
For purchases that qualify for multiple promotions, Square computes
points based on the most
recently created promotion. A purchase must first qualify for program
points to be eligible for promotion points.
- If you are not using the Orders API to manage orders, provide
`points` with the number of points to add.
You must first perform a client-side computation of the points earned
from the loyalty program and
loyalty promotion. For spend-based and visit-based programs, you can
call [CalculateLoyaltyPoints]($e/Loyalty/CalculateLoyaltyPoints)
to compute the points earned from the base loyalty program. For
information about computing points earned from a loyalty promotion,
see
[Calculating promotion
points](https://developer.squareup.com/docs/loyalty-api/loyalty-promoti
ons#calculate-promotion-points).
Args:
account_id (str): The ID of the target [loyalty
account](entity:LoyaltyAccount).
body (AccumulateLoyaltyPointsRequest): An object containing the
fields to POST for the request. See the corresponding object
definition for field details.
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/loyalty/accounts/{account_id}/accumulate')
.http_method(HttpMethodEnum.POST)
.template_param(Parameter()
.key('account_id')
.value(account_id)
.should_encode(True))
.header_param(Parameter()
.key('Content-Type')
.value('application/json'))
.body_param(Parameter()
.value(body))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.body_serializer(APIHelper.json_serialize)
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()
def adjust_loyalty_points(self,
account_id,
body):
"""Does a POST request to /v2/loyalty/accounts/{account_id}/adjust.
Adds points to or subtracts points from a buyer's account.
Use this endpoint only when you need to manually adjust points.
Otherwise, in your application flow, you call
[AccumulateLoyaltyPoints]($e/Loyalty/AccumulateLoyaltyPoints)
to add points when a buyer pays for the purchase.
Args:
account_id (str): The ID of the target [loyalty
account](entity:LoyaltyAccount).
body (AdjustLoyaltyPointsRequest): An object containing the fields
to POST for the request. See the corresponding object
definition for field details.
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/loyalty/accounts/{account_id}/adjust')
.http_method(HttpMethodEnum.POST)
.template_param(Parameter()
.key('account_id')
.value(account_id)
.should_encode(True))
.header_param(Parameter()
.key('Content-Type')
.value('application/json'))
.body_param(Parameter()
.value(body))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.body_serializer(APIHelper.json_serialize)
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()
def search_loyalty_events(self,
body):
"""Does a POST request to /v2/loyalty/events/search.
Searches for loyalty events.
A Square loyalty program maintains a ledger of events that occur
during the lifetime of a
buyer's loyalty account. Each change in the point balance
(for example, points earned, points redeemed, and points expired) is
recorded in the ledger. Using this endpoint, you can search the ledger
for events.
Search results are sorted by `created_at` in descending order.
Args:
body (SearchLoyaltyEventsRequest): An object containing the fields
to POST for the request. See the corresponding object
definition for field details.
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/loyalty/events/search')
.http_method(HttpMethodEnum.POST)
.header_param(Parameter()
.key('Content-Type')
.value('application/json'))
.body_param(Parameter()
.value(body))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.body_serializer(APIHelper.json_serialize)
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()
@deprecated()
def list_loyalty_programs(self):
"""Does a GET request to /v2/loyalty/programs.
Returns a list of loyalty programs in the seller's account.
Loyalty programs define how buyers can earn points and redeem points
for rewards. Square sellers can have only one loyalty program, which
is created and managed from the Seller Dashboard. For more
information, see [Loyalty Program
Overview](https://developer.squareup.com/docs/loyalty/overview).
Replaced with
[RetrieveLoyaltyProgram](api-endpoint:Loyalty-RetrieveLoyaltyProgram)
when used with the keyword `main`.
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/loyalty/programs')
.http_method(HttpMethodEnum.GET)
.header_param(Parameter()
.key('accept')
.value('application/json'))
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()
def retrieve_loyalty_program(self,
program_id):
"""Does a GET request to /v2/loyalty/programs/{program_id}.
Retrieves the loyalty program in a seller's account, specified by the
program ID or the keyword `main`.
Loyalty programs define how buyers can earn points and redeem points
for rewards. Square sellers can have only one loyalty program, which
is created and managed from the Seller Dashboard. For more
information, see [Loyalty Program
Overview](https://developer.squareup.com/docs/loyalty/overview).
Args:
program_id (str): The ID of the loyalty program or the keyword
`main`. Either value can be used to retrieve the single
loyalty program that belongs to the seller.
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/loyalty/programs/{program_id}')
.http_method(HttpMethodEnum.GET)
.template_param(Parameter()
.key('program_id')
.value(program_id)
.should_encode(True))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()
def calculate_loyalty_points(self,
program_id,
body):
"""Does a POST request to /v2/loyalty/programs/{program_id}/calculate.
Calculates the number of points a buyer can earn from a purchase.
Applications might call this endpoint
to display the points to the buyer.
- If you are using the Orders API to manage orders, provide the
`order_id` and (optional) `loyalty_account_id`.
Square reads the order to compute the points earned from the base
loyalty program and an associated
[loyalty promotion]($m/LoyaltyPromotion).
- If you are not using the Orders API to manage orders, provide
`transaction_amount_money` with the
purchase amount. Square uses this amount to calculate the points
earned from the base loyalty program,
but not points earned from a loyalty promotion. For spend-based and
visit-based programs, the `tax_mode`
setting of the accrual rule indicates how taxes should be treated for
loyalty points accrual.
If the purchase qualifies for program points, call
[ListLoyaltyPromotions]($e/Loyalty/ListLoyaltyPromotions) and perform
a client-side computation
to calculate whether the purchase also qualifies for promotion points.
For more information, see
[Calculating promotion
points](https://developer.squareup.com/docs/loyalty-api/loyalty-promoti
ons#calculate-promotion-points).
Args:
program_id (str): The ID of the [loyalty
program](entity:LoyaltyProgram), which defines the rules for
accruing points.
body (CalculateLoyaltyPointsRequest): An object containing the
fields to POST for the request. See the corresponding object
definition for field details.
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/loyalty/programs/{program_id}/calculate')
.http_method(HttpMethodEnum.POST)
.template_param(Parameter()
.key('program_id')
.value(program_id)
.should_encode(True))
.header_param(Parameter()
.key('Content-Type')
.value('application/json'))
.body_param(Parameter()
.value(body))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.body_serializer(APIHelper.json_serialize)
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()
def list_loyalty_promotions(self,
program_id,
status=None,
cursor=None,
limit=None):
"""Does a GET request to /v2/loyalty/programs/{program_id}/promotions.
Lists the loyalty promotions associated with a [loyalty
program]($m/LoyaltyProgram).
Results are sorted by the `created_at` date in descending order
(newest to oldest).
Args:
program_id (str): The ID of the base [loyalty
program](entity:LoyaltyProgram). To get the program ID, call
[RetrieveLoyaltyProgram](api-endpoint:Loyalty-RetrieveLoyaltyPr
ogram) using the `main` keyword.
status (LoyaltyPromotionStatus, optional): The status to filter
the results by. If a status is provided, only loyalty
promotions with the specified status are returned. Otherwise,
all loyalty promotions associated with the loyalty program are
returned.
cursor (str, optional): The cursor returned in the paged response
from the previous call to this endpoint. Provide this cursor
to retrieve the next page of results for your original
request. For more information, see
[Pagination](https://developer.squareup.com/docs/build-basics/c
ommon-api-patterns/pagination).
limit (int, optional): The maximum number of results to return in
a single paged response. The minimum value is 1 and the
maximum value is 30. The default value is 30. For more
information, see
[Pagination](https://developer.squareup.com/docs/build-basics/c
ommon-api-patterns/pagination).
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/loyalty/programs/{program_id}/promotions')
.http_method(HttpMethodEnum.GET)
.template_param(Parameter()
.key('program_id')
.value(program_id)
.should_encode(True))
.query_param(Parameter()
.key('status')
.value(status))
.query_param(Parameter()
.key('cursor')
.value(cursor))
.query_param(Parameter()
.key('limit')
.value(limit))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()
def create_loyalty_promotion(self,
program_id,
body):
"""Does a POST request to /v2/loyalty/programs/{program_id}/promotions.
Creates a loyalty promotion for a [loyalty
program]($m/LoyaltyProgram). A loyalty promotion
enables buyers to earn points in addition to those earned from the
base loyalty program.
This endpoint sets the loyalty promotion to the `ACTIVE` or
`SCHEDULED` status, depending on the
`available_time` setting. A loyalty program can have a maximum of 10
loyalty promotions with an
`ACTIVE` or `SCHEDULED` status.
Args:
program_id (str): The ID of the [loyalty
program](entity:LoyaltyProgram) to associate with the
promotion. To get the program ID, call
[RetrieveLoyaltyProgram](api-endpoint:Loyalty-RetrieveLoyaltyPr
ogram) using the `main` keyword.
body (CreateLoyaltyPromotionRequest): An object containing the
fields to POST for the request. See the corresponding object
definition for field details.
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/loyalty/programs/{program_id}/promotions')
.http_method(HttpMethodEnum.POST)
.template_param(Parameter()
.key('program_id')
.value(program_id)
.should_encode(True))
.header_param(Parameter()
.key('Content-Type')
.value('application/json'))
.body_param(Parameter()
.value(body))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.body_serializer(APIHelper.json_serialize)
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()
def retrieve_loyalty_promotion(self,
promotion_id,
program_id):
"""Does a GET request to /v2/loyalty/programs/{program_id}/promotions/{promotion_id}.
Retrieves a loyalty promotion.
Args:
promotion_id (str): The ID of the [loyalty
promotion](entity:LoyaltyPromotion) to retrieve.
program_id (str): The ID of the base [loyalty
program](entity:LoyaltyProgram). To get the program ID, call
[RetrieveLoyaltyProgram](api-endpoint:Loyalty-RetrieveLoyaltyPr
ogram) using the `main` keyword.
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/loyalty/programs/{program_id}/promotions/{promotion_id}')
.http_method(HttpMethodEnum.GET)
.template_param(Parameter()
.key('promotion_id')
.value(promotion_id)
.should_encode(True))
.template_param(Parameter()
.key('program_id')
.value(program_id)
.should_encode(True))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()
def cancel_loyalty_promotion(self,
promotion_id,
program_id):
"""Does a POST request to /v2/loyalty/programs/{program_id}/promotions/{promotion_id}/cancel.
Cancels a loyalty promotion. Use this endpoint to cancel an `ACTIVE`
promotion earlier than the
end date, cancel an `ACTIVE` promotion when an end date is not
specified, or cancel a `SCHEDULED` promotion.
Because updating a promotion is not supported, you can also use this
endpoint to cancel a promotion before
you create a new one.
This endpoint sets the loyalty promotion to the `CANCELED` state
Args:
promotion_id (str): The ID of the [loyalty
promotion](entity:LoyaltyPromotion) to cancel. You can cancel
a promotion that has an `ACTIVE` or `SCHEDULED` status.
program_id (str): The ID of the base [loyalty
program](entity:LoyaltyProgram).
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/loyalty/programs/{program_id}/promotions/{promotion_id}/cancel')
.http_method(HttpMethodEnum.POST)
.template_param(Parameter()
.key('promotion_id')
.value(promotion_id)
.should_encode(True))
.template_param(Parameter()
.key('program_id')
.value(program_id)
.should_encode(True))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()
def create_loyalty_reward(self,
body):
"""Does a POST request to /v2/loyalty/rewards.
Creates a loyalty reward. In the process, the endpoint does
following:
- Uses the `reward_tier_id` in the request to determine the number of
points
to lock for this reward.
- If the request includes `order_id`, it adds the reward and related
discount to the order.
After a reward is created, the points are locked and
not available for the buyer to redeem another reward.
Args:
body (CreateLoyaltyRewardRequest): An object containing the fields
to POST for the request. See the corresponding object
definition for field details.
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/loyalty/rewards')
.http_method(HttpMethodEnum.POST)
.header_param(Parameter()
.key('Content-Type')
.value('application/json'))
.body_param(Parameter()
.value(body))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.body_serializer(APIHelper.json_serialize)
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()
def search_loyalty_rewards(self,
body):
"""Does a POST request to /v2/loyalty/rewards/search.
Searches for loyalty rewards. This endpoint accepts a request with no
query filters and returns results for all loyalty accounts.
If you include a `query` object, `loyalty_account_id` is required and
`status` is optional.
If you know a reward ID, use the
[RetrieveLoyaltyReward]($e/Loyalty/RetrieveLoyaltyReward) endpoint.
Search results are sorted by `updated_at` in descending order.
Args:
body (SearchLoyaltyRewardsRequest): An object containing the
fields to POST for the request. See the corresponding object
definition for field details.
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/loyalty/rewards/search')
.http_method(HttpMethodEnum.POST)
.header_param(Parameter()
.key('Content-Type')
.value('application/json'))
.body_param(Parameter()
.value(body))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.body_serializer(APIHelper.json_serialize)
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()
def delete_loyalty_reward(self,
reward_id):
"""Does a DELETE request to /v2/loyalty/rewards/{reward_id}.
Deletes a loyalty reward by doing the following:
- Returns the loyalty points back to the loyalty account.
- If an order ID was specified when the reward was created
(see [CreateLoyaltyReward]($e/Loyalty/CreateLoyaltyReward)),
it updates the order by removing the reward and related
discounts.
You cannot delete a reward that has reached the terminal state
(REDEEMED).
Args:
reward_id (str): The ID of the [loyalty
reward](entity:LoyaltyReward) to delete.
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/loyalty/rewards/{reward_id}')
.http_method(HttpMethodEnum.DELETE)
.template_param(Parameter()
.key('reward_id')
.value(reward_id)
.should_encode(True))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()
def retrieve_loyalty_reward(self,
reward_id):
"""Does a GET request to /v2/loyalty/rewards/{reward_id}.
Retrieves a loyalty reward.
Args:
reward_id (str): The ID of the [loyalty
reward](entity:LoyaltyReward) to retrieve.
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/loyalty/rewards/{reward_id}')
.http_method(HttpMethodEnum.GET)
.template_param(Parameter()
.key('reward_id')
.value(reward_id)
.should_encode(True))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()
def redeem_loyalty_reward(self,
reward_id,
body):
"""Does a POST request to /v2/loyalty/rewards/{reward_id}/redeem.
Redeems a loyalty reward.
The endpoint sets the reward to the `REDEEMED` terminal state.
If you are using your own order processing system (not using the
Orders API), you call this endpoint after the buyer paid for the
purchase.
After the reward reaches the terminal state, it cannot be deleted.
In other words, points used for the reward cannot be returned
to the account.
Args:
reward_id (str): The ID of the [loyalty
reward](entity:LoyaltyReward) to redeem.
body (RedeemLoyaltyRewardRequest): An object containing the fields
to POST for the request. See the corresponding object
definition for field details.
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/loyalty/rewards/{reward_id}/redeem')
.http_method(HttpMethodEnum.POST)
.template_param(Parameter()
.key('reward_id')
.value(reward_id)
.should_encode(True))
.header_param(Parameter()
.key('Content-Type')
.value('application/json'))
.body_param(Parameter()
.value(body))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.body_serializer(APIHelper.json_serialize)
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()