Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hosted Onboarding LEM API not supported in v3 #1107

Open
jillingk opened this issue Aug 9, 2023 · 0 comments
Open

Hosted Onboarding LEM API not supported in v3 #1107

jillingk opened this issue Aug 9, 2023 · 0 comments
Labels
Bug report Indicates that issue has been marked as a possible bug by its creator

Comments

@jillingk
Copy link
Contributor

jillingk commented Aug 9, 2023

Describe the bug
In the Adyen documentation and the API-explorer it states that the Hosted Onboarding API in LegalEntityManagement is not supported in v3. Instead its suggesting me to use v2, even though the library only supports the latest version. How should I proceed?

Expected behavior
Either hosted onboarding version 2 to be supported in the library or for the API to properly support Hosted Onboarding in v3.

(Temporary) solution
Since we only support the latest versions in this library through an automated process, we cannot simply downgrade to a lower version of the API. Behind the screen the owners of the Hosted Onboarding API are working to add the support in v3, however in the meantime we recommend manually overriding the Hosted Onboarding Service class.

You can extend the service class and override the endpoint url like this:

public class HostedOnboardingApiV2 extends HostedOnboardingApi{
    public HostedOnboardingApiV2(Client client) {
        super(client);
        this.baseURL = createBaseURL("https://kyc-test.adyen.com/lem/v2");
    }
}

You can then call the methods inherited from the original HostedOnboardingApi class, which will call the version 2 of the API. Since the behaviour and models are identical between v2/v3 this will work perfectly fine for these endpoints.

Do note that other endpoints in LegalEntityManagement or other Adyen API's might contain major changes between versions so using these kind of extensions is at your own risk. If you want to see the changes between API versions you can inspect our OpenAPI specifications in the Adyen-OpenAPI repository.

@jillingk jillingk added the Bug report Indicates that issue has been marked as a possible bug by its creator label Aug 9, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug report Indicates that issue has been marked as a possible bug by its creator
Projects
None yet
Development

No branches or pull requests

1 participant