Skip to content

Commit 6f243d1

Browse files
authored
[ITT-28] - update README (#219)
* Update README.md * Update readme
1 parent e424f4b commit 6f243d1

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

README.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,19 @@ This is the officially supported Python library for using Adyen's APIs.
1111
| --- | ----------- | ------------ | ----------------- |
1212
|[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** |
1313
| [Checkout API](https://docs.adyen.com/api-explorer/#/CheckoutService/v69/overview)| Our latest integration for accepting online payments. | checkout | **v70** |
14+
| [Data Protection API](https://docs.adyen.com/development-resources/data-protection-api) | Endpoint for requesting data erasure. | dataProtection | **v1** |
15+
| [Legal Entity Management API](https://docs.adyen.com/api-explorer/legalentity/latest/overview) | Endpoint to manage legal entities | legalEntityManagement | **v2** |
1416
| [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** |
1517
| [Payments API](https://docs.adyen.com/api-explorer/#/Payment/v68/overview)| Our classic integration for online payments. | payments | **v68** |
1618
| [Payouts API](https://docs.adyen.com/api-explorer/#/Payout/v68/overview)| Endpoints for sending funds to your customers. | payouts | **v68** |
1719
| [POS Terminal Management API](https://docs.adyen.com/api-explorer/#/postfmapi/v1/overview)| Endpoints for managing your point-of-sale payment terminals. | terminal | **v1** |
1820
| [Recurring API](https://docs.adyen.com/api-explorer/#/Recurring/v68/overview)| Endpoints for managing saved payment details. | recurring | **v68** |
19-
21+
| [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** |
2023
For more information, refer to our [documentation](https://docs.adyen.com/) or the [API Explorer](https://docs.adyen.com/api-explorer/).
2124

25+
26+
2227

2328

2429
## Prerequisites
@@ -85,14 +90,13 @@ request = {
8590
"returnUrl": "https://your-company.com/...",
8691
"merchantAccount": "YOUR_MERCHANT_ACCOUNT"
8792
}
88-
result = adyen.checkout.payments(request)
93+
result = adyen.checkout.payments_api.payments(request)
8994
~~~~
9095
#### Using one of the services
9196
~~~~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
96100
request = {
97101
"amount": {
98102
"currency": "USD",
@@ -110,7 +114,7 @@ request = {
110114
"returnUrl": "https://your-company.com/...",
111115
"merchantAccount": "YOUR_MERCHANT_ACCOUNT"
112116
}
113-
result = adyen.payments(request)
117+
result = checkout.payments_api.payments(request)
114118
~~~~
115119
#### Force HTTP library
116120
~~~~python

0 commit comments

Comments
 (0)