We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c08f436 commit 0be2b70Copy full SHA for 0be2b70
README.md
@@ -74,6 +74,17 @@ else:
74
print(result_charge.errors)
75
```
76
77
+### Tokenize Card
78
+```python
79
+result_card = juno.card.tokenization({"credit_card_hash": "39612e90-ae60-4fdd-a437-fcff56c41bea"})
80
+
81
+if result_card.is_success:
82
+ print(f"Attached card id: {result_card.credit_card_id}")
83
+ print(f".... {result_card.last4_card_number} ({result_card.expiration_month}/{result_card.expiration_year})")
84
+else:
85
+ print(result_card.errors)
86
+```
87
88
### List Charges
89
```python
90
response = juno.charge.find_all(
0 commit comments