diff --git a/Adyen/services/balancePlatform/account_holders_api.py b/Adyen/services/balancePlatform/account_holders_api.py index d6e8b5ee..97ad7b10 100644 --- a/Adyen/services/balancePlatform/account_holders_api.py +++ b/Adyen/services/balancePlatform/account_holders_api.py @@ -53,6 +53,14 @@ def get_tax_form(self, id, idempotency_key=None, **kwargs): method = "GET" return self.client.call_adyen_api(None, self.service, method, endpoint, idempotency_key, **kwargs) + def get_tax_form_summary(self, id, idempotency_key=None, **kwargs): + """ + Get summary of tax forms for an account holder + """ + endpoint = self.baseUrl + f"/accountHolders/{id}/taxFormSummary" + method = "GET" + return self.client.call_adyen_api(None, self.service, method, endpoint, idempotency_key, **kwargs) + def update_account_holder(self, request, id, idempotency_key=None, **kwargs): """ Update an account holder