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
|[BIN lookup API](https://docs.adyen.com/api-explorer/#/BinLookup/v52/overview)| The BIN Lookup API provides endpoints for retrieving information based on a given BIN. | binLookup |**v52**|
|[Management API](https://docs.adyen.com/api-explorer/#/ManagementService/v1/overview)| Configure and manage your Adyen company and merchant accounts, stores, and payment terminals. | management |**v1**|
|[Stored Value API](https://docs.adyen.com/payment-methods/gift-cards/stored-value-api)| Endpoints for managing gift cards. | storedValue |**v46**|
22
+
|[Transfers API](https://docs.adyen.com/api-explorer/transfers/3/overview)| Endpoints for managing transfers, getting information about transactions or moving fund | transfers |**v3**|
20
23
For more information, refer to our [documentation](https://docs.adyen.com/) or the [API Explorer](https://docs.adyen.com/api-explorer/).
21
24
25
+
26
+
22
27
23
28
24
29
## Prerequisites
@@ -85,14 +90,13 @@ request = {
85
90
"returnUrl": "https://your-company.com/...",
86
91
"merchantAccount": "YOUR_MERCHANT_ACCOUNT"
87
92
}
88
-
result = adyen.checkout.payments(request)
93
+
result = adyen.checkout.payments_api.payments(request)
89
94
~~~~
90
95
#### Using one of the services
91
96
~~~~python
92
-
from Adyen import AdyenCheckoutApi
93
-
adyen = AdyenCheckoutApi()
94
-
adyen.client.xapikey ="YourXapikey"
95
-
adyen.client.platform ="test"# change to live for production
97
+
from Adyen import checkout
98
+
checkout.client.xapikey ="YourXapikey"
99
+
checkout.client.platform ="test"# change to live for production
0 commit comments