Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Adyen/services/checkout/donations_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class DonationsApi(AdyenServiceBase):
def __init__(self, client=None):
super().__init__(client=client)
self.service = "checkout"
self.baseUrl = "https://checkout-test.adyen.com/v71"
self.baseUrl = "https://checkout-test.adyen.com/v72"

def donation_campaigns(self, request, idempotency_key=None, **kwargs):
"""
Expand Down
2 changes: 1 addition & 1 deletion Adyen/services/checkout/modifications_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class ModificationsApi(AdyenServiceBase):
def __init__(self, client=None):
super().__init__(client=client)
self.service = "checkout"
self.baseUrl = "https://checkout-test.adyen.com/v71"
self.baseUrl = "https://checkout-test.adyen.com/v72"

def cancel_authorised_payment(self, request, idempotency_key=None, **kwargs):
"""
Expand Down
2 changes: 1 addition & 1 deletion Adyen/services/checkout/orders_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class OrdersApi(AdyenServiceBase):
def __init__(self, client=None):
super().__init__(client=client)
self.service = "checkout"
self.baseUrl = "https://checkout-test.adyen.com/v71"
self.baseUrl = "https://checkout-test.adyen.com/v72"

def cancel_order(self, request, idempotency_key=None, **kwargs):
"""
Expand Down
2 changes: 1 addition & 1 deletion Adyen/services/checkout/payment_links_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class PaymentLinksApi(AdyenServiceBase):
def __init__(self, client=None):
super().__init__(client=client)
self.service = "checkout"
self.baseUrl = "https://checkout-test.adyen.com/v71"
self.baseUrl = "https://checkout-test.adyen.com/v72"

def get_payment_link(self, linkId, idempotency_key=None, **kwargs):
"""
Expand Down
12 changes: 11 additions & 1 deletion Adyen/services/checkout/payments_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
def __init__(self, client=None):
super().__init__(client=client)
self.service = "checkout"
self.baseUrl = "https://checkout-test.adyen.com/v71"
self.baseUrl = "https://checkout-test.adyen.com/v72"

def card_details(self, request, idempotency_key=None, **kwargs):
"""
Expand Down Expand Up @@ -72,3 +72,13 @@
return self.client.call_adyen_api(
request, self.service, method, endpoint, idempotency_key, **kwargs
)

def update_session(self, request, sessionId, idempotency_key=None, **kwargs):

Check warning on line 76 in Adyen/services/checkout/payments_api.py

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Rename this parameter "sessionId" to match the regular expression ^[_a-z][a-z0-9_]*$.

See more on https://sonarcloud.io/project/issues?id=Adyen_adyen-python-api-library&issues=AZ_L3pwJ3SmOMiW3agIz&open=AZ_L3pwJ3SmOMiW3agIz&pullRequest=496
"""
Update a payment session
"""
endpoint = self.baseUrl + f"/sessions/{sessionId}"
method = "PATCH"
return self.client.call_adyen_api(
request, self.service, method, endpoint, idempotency_key, **kwargs
)
2 changes: 1 addition & 1 deletion Adyen/services/checkout/recurring_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class RecurringApi(AdyenServiceBase):
def __init__(self, client=None):
super().__init__(client=client)
self.service = "checkout"
self.baseUrl = "https://checkout-test.adyen.com/v71"
self.baseUrl = "https://checkout-test.adyen.com/v72"

def delete_token_for_stored_payment_details(
self, storedPaymentMethodId, idempotency_key=None, **kwargs
Expand Down
2 changes: 1 addition & 1 deletion Adyen/services/checkout/utility_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class UtilityApi(AdyenServiceBase):
def __init__(self, client=None):
super().__init__(client=client)
self.service = "checkout"
self.baseUrl = "https://checkout-test.adyen.com/v71"
self.baseUrl = "https://checkout-test.adyen.com/v72"

def get_apple_pay_session(self, request, idempotency_key=None, **kwargs):
"""
Expand Down
8 changes: 8 additions & 0 deletions sdk-generation-log/checkout.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"service": "checkout",
"project": "python",
"generatedAt": "2026-08-04T17:15:43Z",
"openapiCommitSha": "99f164c03beb63287d2eefbad9d9d32d2a3af25b",
"automationCommitSha": "0c108bd8050cf480d2710b78b770afdfbdd89397",
"libraryCommitSha": "b6f49792b79c23e2674b35c04dd045aa07daf599"
}
Loading