You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- 📑 **Receipts**: Query and retrive receipts of any transaction
12
+
- 📑 **Receipts**: Query and retrieve receipts of any transaction
13
13
- 📊 **Transaction History**: Query and track transactions history
14
14
- 🔒 **Secure**: Built-in security best practices
15
15
@@ -37,7 +37,7 @@ client = SantanderApiClient(
37
37
)
38
38
39
39
# Make a simple PIX transfer
40
-
from santander_sdk.piximport transfer_pix
40
+
from santander_sdk import transfer_pix
41
41
42
42
transfer = transfer_pix(
43
43
client,
@@ -47,7 +47,7 @@ transfer = transfer_pix(
47
47
)
48
48
49
49
# Check transfer status
50
-
from santander_sdk.piximport get_transfer
50
+
from santander_sdk import get_transfer
51
51
52
52
status = get_transfer(transfer["id"])
53
53
print(f"Transfer status: {status['status']}")
@@ -80,11 +80,11 @@ transfer = transfer_pix(
80
80
)
81
81
```
82
82
83
-
### List Payments to get usefull information
83
+
### List Payments to get useful information
84
84
You can get the list of payments made, filtering by payment type, recipient, etc. See `ListPaymentParams` for all possible filters. One use case, for example, is when you want to generate a receipt but don't have the payment ID.
85
85
86
86
```python
87
-
from santander_sdk.payment_receiptsimport payment_list, ListPaymentParams
87
+
from santander_sdk import payment_list, ListPaymentParams
0 commit comments