-
Notifications
You must be signed in to change notification settings - Fork 4
/
tokenizations.py
1097 lines (936 loc) · 48.3 KB
/
tokenizations.py
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
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
from __future__ import annotations
from typing import Union
from datetime import date
from typing_extensions import Literal
import httpx
from .. import _legacy_response
from ..types import (
tokenization_list_params,
tokenization_simulate_params,
tokenization_resend_activation_code_params,
tokenization_update_digital_card_art_params,
)
from .._types import NOT_GIVEN, Body, Query, Headers, NoneType, NotGiven
from .._utils import (
maybe_transform,
async_maybe_transform,
)
from .._compat import cached_property
from .._resource import SyncAPIResource, AsyncAPIResource
from .._response import to_streamed_response_wrapper, async_to_streamed_response_wrapper
from ..pagination import SyncCursorPage, AsyncCursorPage
from .._base_client import AsyncPaginator, make_request_options
from ..types.tokenization import Tokenization
from ..types.tokenization_retrieve_response import TokenizationRetrieveResponse
from ..types.tokenization_simulate_response import TokenizationSimulateResponse
from ..types.tokenization_update_digital_card_art_response import TokenizationUpdateDigitalCardArtResponse
__all__ = ["Tokenizations", "AsyncTokenizations"]
class Tokenizations(SyncAPIResource):
@cached_property
def with_raw_response(self) -> TokenizationsWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return the
the raw response object instead of the parsed content.
For more information, see https://www.github.com/lithic-com/lithic-python#accessing-raw-response-data-eg-headers
"""
return TokenizationsWithRawResponse(self)
@cached_property
def with_streaming_response(self) -> TokenizationsWithStreamingResponse:
"""
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
For more information, see https://www.github.com/lithic-com/lithic-python#with_streaming_response
"""
return TokenizationsWithStreamingResponse(self)
def retrieve(
self,
tokenization_token: str,
*,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> TokenizationRetrieveResponse:
"""
Get tokenization
Args:
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
if not tokenization_token:
raise ValueError(f"Expected a non-empty value for `tokenization_token` but received {tokenization_token!r}")
return self._get(
f"/v1/tokenizations/{tokenization_token}",
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=TokenizationRetrieveResponse,
)
def list(
self,
*,
account_token: str | NotGiven = NOT_GIVEN,
begin: Union[str, date] | NotGiven = NOT_GIVEN,
card_token: str | NotGiven = NOT_GIVEN,
end: Union[str, date] | NotGiven = NOT_GIVEN,
ending_before: str | NotGiven = NOT_GIVEN,
page_size: int | NotGiven = NOT_GIVEN,
starting_after: str | NotGiven = NOT_GIVEN,
tokenization_channel: Literal["DIGITAL_WALLET", "MERCHANT", "ALL"] | NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> SyncCursorPage[Tokenization]:
"""
List card tokenizations
Args:
account_token: Filters for tokenizations associated with a specific account.
begin: Filter for tokenizations created after this date.
card_token: Filters for tokenizations associated with a specific card.
end: Filter for tokenizations created before this date.
ending_before: A cursor representing an item's token before which a page of results should end.
Used to retrieve the previous page of results before this item.
page_size: Page size (for pagination).
starting_after: A cursor representing an item's token after which a page of results should
begin. Used to retrieve the next page of results after this item.
tokenization_channel: Filter for tokenizations by tokenization channel. If this is not specified, only
DIGITAL_WALLET tokenizations will be returned.
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
return self._get_api_list(
"/v1/tokenizations",
page=SyncCursorPage[Tokenization],
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
query=maybe_transform(
{
"account_token": account_token,
"begin": begin,
"card_token": card_token,
"end": end,
"ending_before": ending_before,
"page_size": page_size,
"starting_after": starting_after,
"tokenization_channel": tokenization_channel,
},
tokenization_list_params.TokenizationListParams,
),
),
model=Tokenization,
)
def activate(
self,
tokenization_token: str,
*,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> None:
"""This endpoint is used to ask the card network to activate a tokenization.
A
successful response indicates that the request was successfully delivered to the
card network. When the card network activates the tokenization, the state will
be updated and a tokenization.updated event will be sent. The endpoint may only
be used on digital wallet tokenizations with status `INACTIVE`,
`PENDING_ACTIVATION`, or `PENDING_2FA`. This will put the tokenization in an
active state, and transactions will be allowed. Reach out at
[lithic.com/contact](https://lithic.com/contact) for more information.
Args:
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
if not tokenization_token:
raise ValueError(f"Expected a non-empty value for `tokenization_token` but received {tokenization_token!r}")
return self._post(
f"/v1/tokenizations/{tokenization_token}/activate",
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=NoneType,
)
def deactivate(
self,
tokenization_token: str,
*,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> None:
"""This endpoint is used to ask the card network to deactivate a tokenization.
A
successful response indicates that the request was successfully delivered to the
card network. When the card network deactivates the tokenization, the state will
be updated and a tokenization.updated event will be sent. Authorizations
attempted with a deactivated tokenization will be blocked and will not be
forwarded to Lithic from the network. Deactivating the token is a permanent
operation. If the target is a digital wallet tokenization, it will be removed
from its device. Reach out at [lithic.com/contact](https://lithic.com/contact)
for more information.
Args:
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
if not tokenization_token:
raise ValueError(f"Expected a non-empty value for `tokenization_token` but received {tokenization_token!r}")
return self._post(
f"/v1/tokenizations/{tokenization_token}/deactivate",
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=NoneType,
)
def pause(
self,
tokenization_token: str,
*,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> None:
"""This endpoint is used to ask the card network to pause a tokenization.
A
successful response indicates that the request was successfully delivered to the
card network. When the card network pauses the tokenization, the state will be
updated and a tokenization.updated event will be sent. The endpoint may only be
used on tokenizations with status `ACTIVE`. A paused token will prevent
merchants from sending authorizations, and is a temporary status that can be
changed. Reach out at [lithic.com/contact](https://lithic.com/contact) for more
information.
Args:
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
if not tokenization_token:
raise ValueError(f"Expected a non-empty value for `tokenization_token` but received {tokenization_token!r}")
return self._post(
f"/v1/tokenizations/{tokenization_token}/pause",
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=NoneType,
)
def resend_activation_code(
self,
tokenization_token: str,
*,
activation_method_type: Literal["EMAIL_TO_CARDHOLDER_ADDRESS", "TEXT_TO_CARDHOLDER_NUMBER"]
| NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> None:
"""
This endpoint is used to ask the card network to send another activation code to
a cardholder that has already tried tokenizing a card. A successful response
indicates that the request was successfully delivered to the card network. The
endpoint may only be used on Mastercard digital wallet tokenizations with status
`INACTIVE`, `PENDING_ACTIVATION`, or `PENDING_2FA`. The network will send a new
activation code to the one of the contact methods provided in the initial
tokenization flow. If a user fails to enter the code correctly 3 times, the
contact method will not be eligible for resending the activation code, and the
cardholder must restart the provision process. Reach out at
[lithic.com/contact](https://lithic.com/contact) for more information.
Args:
activation_method_type: The communication method that the user has selected to use to receive the
authentication code. Supported Values: Sms = "TEXT_TO_CARDHOLDER_NUMBER". Email
= "EMAIL_TO_CARDHOLDER_ADDRESS"
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
if not tokenization_token:
raise ValueError(f"Expected a non-empty value for `tokenization_token` but received {tokenization_token!r}")
return self._post(
f"/v1/tokenizations/{tokenization_token}/resend_activation_code",
body=maybe_transform(
{"activation_method_type": activation_method_type},
tokenization_resend_activation_code_params.TokenizationResendActivationCodeParams,
),
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=NoneType,
)
def simulate(
self,
*,
cvv: str,
expiration_date: str,
pan: str,
tokenization_source: Literal["APPLE_PAY", "GOOGLE", "SAMSUNG_PAY", "MERCHANT"],
account_score: int | NotGiven = NOT_GIVEN,
device_score: int | NotGiven = NOT_GIVEN,
entity: str | NotGiven = NOT_GIVEN,
wallet_recommended_decision: Literal["APPROVED", "DECLINED", "REQUIRE_ADDITIONAL_AUTHENTICATION"]
| NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> TokenizationSimulateResponse:
"""
This endpoint is used to simulate a card's tokenization in the Digital Wallet
and merchant tokenization ecosystem.
Args:
cvv: The three digit cvv for the card.
expiration_date: The expiration date of the card in 'MM/YY' format.
pan: The sixteen digit card number.
tokenization_source: The source of the tokenization request.
account_score: The account score (1-5) that represents how the Digital Wallet's view on how
reputable an end user's account is.
device_score: The device score (1-5) that represents how the Digital Wallet's view on how
reputable an end user's device is.
entity: Optional field to specify the token requestor name for a merchant token
simulation. Ignored when tokenization_source is not MERCHANT.
wallet_recommended_decision: The decision that the Digital Wallet's recommend
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
return self._post(
"/v1/simulate/tokenizations",
body=maybe_transform(
{
"cvv": cvv,
"expiration_date": expiration_date,
"pan": pan,
"tokenization_source": tokenization_source,
"account_score": account_score,
"device_score": device_score,
"entity": entity,
"wallet_recommended_decision": wallet_recommended_decision,
},
tokenization_simulate_params.TokenizationSimulateParams,
),
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=TokenizationSimulateResponse,
)
def unpause(
self,
tokenization_token: str,
*,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> None:
"""This endpoint is used to ask the card network to unpause a tokenization.
A
successful response indicates that the request was successfully delivered to the
card network. When the card network unpauses the tokenization, the state will be
updated and a tokenization.updated event will be sent. The endpoint may only be
used on tokenizations with status `PAUSED`. This will put the tokenization in an
active state, and transactions may resume. Reach out at
[lithic.com/contact](https://lithic.com/contact) for more information.
Args:
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
if not tokenization_token:
raise ValueError(f"Expected a non-empty value for `tokenization_token` but received {tokenization_token!r}")
return self._post(
f"/v1/tokenizations/{tokenization_token}/unpause",
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=NoneType,
)
def update_digital_card_art(
self,
tokenization_token: str,
*,
digital_card_art_token: str | NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> TokenizationUpdateDigitalCardArtResponse:
"""
This endpoint is used update the digital card art for a digital wallet
tokenization. A successful response indicates that the card network has updated
the tokenization's art, and the tokenization's `digital_cart_art_token` field
was updated. The endpoint may not be used on tokenizations with status
`DEACTIVATED`. Note that this updates the art for one specific tokenization, not
all tokenizations for a card. New tokenizations for a card will be created with
the art referenced in the card object's `digital_card_art_token` field. Reach
out at [lithic.com/contact](https://lithic.com/contact) for more information.
Args:
digital_card_art_token: Specifies the digital card art to be displayed in the user’s digital wallet for
a tokenization. This artwork must be approved by the network and configured by
Lithic to use. See
[Flexible Card Art Guide](https://docs.lithic.com/docs/about-digital-wallets#flexible-card-art).
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
if not tokenization_token:
raise ValueError(f"Expected a non-empty value for `tokenization_token` but received {tokenization_token!r}")
return self._post(
f"/v1/tokenizations/{tokenization_token}/update_digital_card_art",
body=maybe_transform(
{"digital_card_art_token": digital_card_art_token},
tokenization_update_digital_card_art_params.TokenizationUpdateDigitalCardArtParams,
),
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=TokenizationUpdateDigitalCardArtResponse,
)
class AsyncTokenizations(AsyncAPIResource):
@cached_property
def with_raw_response(self) -> AsyncTokenizationsWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return the
the raw response object instead of the parsed content.
For more information, see https://www.github.com/lithic-com/lithic-python#accessing-raw-response-data-eg-headers
"""
return AsyncTokenizationsWithRawResponse(self)
@cached_property
def with_streaming_response(self) -> AsyncTokenizationsWithStreamingResponse:
"""
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
For more information, see https://www.github.com/lithic-com/lithic-python#with_streaming_response
"""
return AsyncTokenizationsWithStreamingResponse(self)
async def retrieve(
self,
tokenization_token: str,
*,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> TokenizationRetrieveResponse:
"""
Get tokenization
Args:
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
if not tokenization_token:
raise ValueError(f"Expected a non-empty value for `tokenization_token` but received {tokenization_token!r}")
return await self._get(
f"/v1/tokenizations/{tokenization_token}",
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=TokenizationRetrieveResponse,
)
def list(
self,
*,
account_token: str | NotGiven = NOT_GIVEN,
begin: Union[str, date] | NotGiven = NOT_GIVEN,
card_token: str | NotGiven = NOT_GIVEN,
end: Union[str, date] | NotGiven = NOT_GIVEN,
ending_before: str | NotGiven = NOT_GIVEN,
page_size: int | NotGiven = NOT_GIVEN,
starting_after: str | NotGiven = NOT_GIVEN,
tokenization_channel: Literal["DIGITAL_WALLET", "MERCHANT", "ALL"] | NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> AsyncPaginator[Tokenization, AsyncCursorPage[Tokenization]]:
"""
List card tokenizations
Args:
account_token: Filters for tokenizations associated with a specific account.
begin: Filter for tokenizations created after this date.
card_token: Filters for tokenizations associated with a specific card.
end: Filter for tokenizations created before this date.
ending_before: A cursor representing an item's token before which a page of results should end.
Used to retrieve the previous page of results before this item.
page_size: Page size (for pagination).
starting_after: A cursor representing an item's token after which a page of results should
begin. Used to retrieve the next page of results after this item.
tokenization_channel: Filter for tokenizations by tokenization channel. If this is not specified, only
DIGITAL_WALLET tokenizations will be returned.
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
return self._get_api_list(
"/v1/tokenizations",
page=AsyncCursorPage[Tokenization],
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
query=maybe_transform(
{
"account_token": account_token,
"begin": begin,
"card_token": card_token,
"end": end,
"ending_before": ending_before,
"page_size": page_size,
"starting_after": starting_after,
"tokenization_channel": tokenization_channel,
},
tokenization_list_params.TokenizationListParams,
),
),
model=Tokenization,
)
async def activate(
self,
tokenization_token: str,
*,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> None:
"""This endpoint is used to ask the card network to activate a tokenization.
A
successful response indicates that the request was successfully delivered to the
card network. When the card network activates the tokenization, the state will
be updated and a tokenization.updated event will be sent. The endpoint may only
be used on digital wallet tokenizations with status `INACTIVE`,
`PENDING_ACTIVATION`, or `PENDING_2FA`. This will put the tokenization in an
active state, and transactions will be allowed. Reach out at
[lithic.com/contact](https://lithic.com/contact) for more information.
Args:
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
if not tokenization_token:
raise ValueError(f"Expected a non-empty value for `tokenization_token` but received {tokenization_token!r}")
return await self._post(
f"/v1/tokenizations/{tokenization_token}/activate",
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=NoneType,
)
async def deactivate(
self,
tokenization_token: str,
*,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> None:
"""This endpoint is used to ask the card network to deactivate a tokenization.
A
successful response indicates that the request was successfully delivered to the
card network. When the card network deactivates the tokenization, the state will
be updated and a tokenization.updated event will be sent. Authorizations
attempted with a deactivated tokenization will be blocked and will not be
forwarded to Lithic from the network. Deactivating the token is a permanent
operation. If the target is a digital wallet tokenization, it will be removed
from its device. Reach out at [lithic.com/contact](https://lithic.com/contact)
for more information.
Args:
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
if not tokenization_token:
raise ValueError(f"Expected a non-empty value for `tokenization_token` but received {tokenization_token!r}")
return await self._post(
f"/v1/tokenizations/{tokenization_token}/deactivate",
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=NoneType,
)
async def pause(
self,
tokenization_token: str,
*,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> None:
"""This endpoint is used to ask the card network to pause a tokenization.
A
successful response indicates that the request was successfully delivered to the
card network. When the card network pauses the tokenization, the state will be
updated and a tokenization.updated event will be sent. The endpoint may only be
used on tokenizations with status `ACTIVE`. A paused token will prevent
merchants from sending authorizations, and is a temporary status that can be
changed. Reach out at [lithic.com/contact](https://lithic.com/contact) for more
information.
Args:
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
if not tokenization_token:
raise ValueError(f"Expected a non-empty value for `tokenization_token` but received {tokenization_token!r}")
return await self._post(
f"/v1/tokenizations/{tokenization_token}/pause",
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=NoneType,
)
async def resend_activation_code(
self,
tokenization_token: str,
*,
activation_method_type: Literal["EMAIL_TO_CARDHOLDER_ADDRESS", "TEXT_TO_CARDHOLDER_NUMBER"]
| NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> None:
"""
This endpoint is used to ask the card network to send another activation code to
a cardholder that has already tried tokenizing a card. A successful response
indicates that the request was successfully delivered to the card network. The
endpoint may only be used on Mastercard digital wallet tokenizations with status
`INACTIVE`, `PENDING_ACTIVATION`, or `PENDING_2FA`. The network will send a new
activation code to the one of the contact methods provided in the initial
tokenization flow. If a user fails to enter the code correctly 3 times, the
contact method will not be eligible for resending the activation code, and the
cardholder must restart the provision process. Reach out at
[lithic.com/contact](https://lithic.com/contact) for more information.
Args:
activation_method_type: The communication method that the user has selected to use to receive the
authentication code. Supported Values: Sms = "TEXT_TO_CARDHOLDER_NUMBER". Email
= "EMAIL_TO_CARDHOLDER_ADDRESS"
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
if not tokenization_token:
raise ValueError(f"Expected a non-empty value for `tokenization_token` but received {tokenization_token!r}")
return await self._post(
f"/v1/tokenizations/{tokenization_token}/resend_activation_code",
body=await async_maybe_transform(
{"activation_method_type": activation_method_type},
tokenization_resend_activation_code_params.TokenizationResendActivationCodeParams,
),
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=NoneType,
)
async def simulate(
self,
*,
cvv: str,
expiration_date: str,
pan: str,
tokenization_source: Literal["APPLE_PAY", "GOOGLE", "SAMSUNG_PAY", "MERCHANT"],
account_score: int | NotGiven = NOT_GIVEN,
device_score: int | NotGiven = NOT_GIVEN,
entity: str | NotGiven = NOT_GIVEN,
wallet_recommended_decision: Literal["APPROVED", "DECLINED", "REQUIRE_ADDITIONAL_AUTHENTICATION"]
| NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> TokenizationSimulateResponse:
"""
This endpoint is used to simulate a card's tokenization in the Digital Wallet
and merchant tokenization ecosystem.
Args:
cvv: The three digit cvv for the card.
expiration_date: The expiration date of the card in 'MM/YY' format.
pan: The sixteen digit card number.
tokenization_source: The source of the tokenization request.
account_score: The account score (1-5) that represents how the Digital Wallet's view on how
reputable an end user's account is.
device_score: The device score (1-5) that represents how the Digital Wallet's view on how
reputable an end user's device is.
entity: Optional field to specify the token requestor name for a merchant token
simulation. Ignored when tokenization_source is not MERCHANT.
wallet_recommended_decision: The decision that the Digital Wallet's recommend
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
return await self._post(
"/v1/simulate/tokenizations",
body=await async_maybe_transform(
{
"cvv": cvv,
"expiration_date": expiration_date,
"pan": pan,
"tokenization_source": tokenization_source,
"account_score": account_score,
"device_score": device_score,
"entity": entity,
"wallet_recommended_decision": wallet_recommended_decision,
},
tokenization_simulate_params.TokenizationSimulateParams,
),
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=TokenizationSimulateResponse,
)
async def unpause(
self,
tokenization_token: str,
*,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> None:
"""This endpoint is used to ask the card network to unpause a tokenization.
A
successful response indicates that the request was successfully delivered to the
card network. When the card network unpauses the tokenization, the state will be
updated and a tokenization.updated event will be sent. The endpoint may only be
used on tokenizations with status `PAUSED`. This will put the tokenization in an
active state, and transactions may resume. Reach out at
[lithic.com/contact](https://lithic.com/contact) for more information.
Args:
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
if not tokenization_token:
raise ValueError(f"Expected a non-empty value for `tokenization_token` but received {tokenization_token!r}")
return await self._post(
f"/v1/tokenizations/{tokenization_token}/unpause",
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=NoneType,
)
async def update_digital_card_art(
self,
tokenization_token: str,
*,
digital_card_art_token: str | NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> TokenizationUpdateDigitalCardArtResponse:
"""
This endpoint is used update the digital card art for a digital wallet
tokenization. A successful response indicates that the card network has updated
the tokenization's art, and the tokenization's `digital_cart_art_token` field
was updated. The endpoint may not be used on tokenizations with status
`DEACTIVATED`. Note that this updates the art for one specific tokenization, not
all tokenizations for a card. New tokenizations for a card will be created with
the art referenced in the card object's `digital_card_art_token` field. Reach
out at [lithic.com/contact](https://lithic.com/contact) for more information.
Args:
digital_card_art_token: Specifies the digital card art to be displayed in the user’s digital wallet for
a tokenization. This artwork must be approved by the network and configured by
Lithic to use. See
[Flexible Card Art Guide](https://docs.lithic.com/docs/about-digital-wallets#flexible-card-art).
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
if not tokenization_token:
raise ValueError(f"Expected a non-empty value for `tokenization_token` but received {tokenization_token!r}")
return await self._post(
f"/v1/tokenizations/{tokenization_token}/update_digital_card_art",
body=await async_maybe_transform(
{"digital_card_art_token": digital_card_art_token},
tokenization_update_digital_card_art_params.TokenizationUpdateDigitalCardArtParams,
),
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=TokenizationUpdateDigitalCardArtResponse,
)
class TokenizationsWithRawResponse:
def __init__(self, tokenizations: Tokenizations) -> None:
self._tokenizations = tokenizations
self.retrieve = _legacy_response.to_raw_response_wrapper(
tokenizations.retrieve,
)
self.list = _legacy_response.to_raw_response_wrapper(
tokenizations.list,
)
self.activate = _legacy_response.to_raw_response_wrapper(
tokenizations.activate,
)
self.deactivate = _legacy_response.to_raw_response_wrapper(
tokenizations.deactivate,
)
self.pause = _legacy_response.to_raw_response_wrapper(
tokenizations.pause,
)
self.resend_activation_code = _legacy_response.to_raw_response_wrapper(
tokenizations.resend_activation_code,
)
self.simulate = _legacy_response.to_raw_response_wrapper(
tokenizations.simulate,
)
self.unpause = _legacy_response.to_raw_response_wrapper(
tokenizations.unpause,
)
self.update_digital_card_art = _legacy_response.to_raw_response_wrapper(
tokenizations.update_digital_card_art,
)