--- title: "Customize the hosted onboarding experience" description: "Customize the users' experience on the Hosted Onboarding Page." url: "https://docs.adyen.com/classic-platforms/onboard-users/hosted-onboarding-page/customize-experience" source_url: "https://docs.adyen.com/classic-platforms/onboard-users/hosted-onboarding-page/customize-experience.md" canonical: "https://docs.adyen.com/classic-platforms/onboard-users/hosted-onboarding-page/customize-experience" last_modified: "2022-03-07T15:43:00+01:00" language: "en" --- # Customize the hosted onboarding experience Customize the users' experience on the Hosted Onboarding Page. [View source](/classic-platforms/onboard-users/hosted-onboarding-page/customize-experience.md) This page is for classic Adyen for Platforms integrations. If you are just starting your implementation, refer to our [new integration guide](/adyen-for-platforms-model) instead. You can easily customize the hosted onboarding user experience through the [/getOnboardingUrl](https://docs.adyen.com/api-explorer/Hop/latest/post/getOnboardingUrl) endpoint. The request parameters allow you to: * Offer a modular experience by: * [Collecting only specific data points.](#collect-specific-information) * [Controlling which pages are presented on HOP.](#specify-summary-pages) * [Set the default language logic.](#change-page-language) * [Make it possible for users to update their information, even after check have passed.](#change-edit-settings) * [Choose which name to display on the welcome page.](#customize-platform-name) * [Override the default return URL.](#override-default-url) ## Collect information only for specific verification checks The Hosted Onboarding Page collects information for all verification checks that apply to the [legal entity type](/classic-platforms/account-holders-and-accounts#legal-entity-types). To collect information only for specific [verification checks](/classic-platforms/verification-process), specify the `collectInformation` object in your [/getOnboardingUrl](https://docs.adyen.com/api-explorer/Hop/latest/post/getOnboardingUrl) request. You can choose to collect information only on the following checks or a combination thereof: * Bank details * Business details * Individual details * PCI questionnaire * Shareholder details ## Specify which summary pages to show to the account holder You can decide whether to show specific pages to the account holder by sending `showPages` object in your [/getOnboardingUrl](https://docs.adyen.com/api-explorer/Hop/latest/post/getOnboardingUrl) request. You can show or hide the following pages: * Welcome page * Bank details summary * Business details summary * Individual details summary * Shareholder details summary The welcome page is not shown by default. ## Change the page language By default, an onboarding page is rendered in the language set in the browser settings. If the browser language is not supported, the page is rendered in **en-US**. To change the language: * The account holder can select the language from the drop-down menu at the top or the bottom of the page, depending on the header configuration. * Alternatively, you can send the `shopperLocale` in your [/getOnboardingUrl](https://docs.adyen.com/api-explorer/Hop/latest/post/getOnboardingUrl) request. When the account holder opens the page, the page is automatically rendered in the language you specified. If the `shopperLocale` you specified is not supported, the page is rendered in the language set in the browser settings. The following are the supported values for `shopperLocale`: | Language | `shopperlocale` | | ---------------------- | --------------- | | Croatian | **hr-HR** | | Czech | **cs-CZ** | | Danish | **da-DK** | | Dutch | **nl-NL** | | English - US (default) | **en-US** | | Finnish | **fi-FI** | | French | **fr-FR** | | German | **de-DE** | | Hungarian | **hu-HU** | | Italian | **it-IT** | | Norwegian | **no-NO** | | Polish | **pl-PL** | | Portuguese | **pt-BR** | | Romanian | **ro-RO** | | Slovakia | **sk-SK** | | Slovenian | **sl-SI** | | Spanish | **es-ES** | | Swedish | **sv-SE** | ## Change editing settings The main purpose of HOP is to be a one-time onboarding tool, which means that, by default, account holders cannot edit data on HOP that has already been verified.\ However, there may be special circumstances that require information to be updated even after verification checks have passed.\ To change the default behavior and allow editing data, send the `editMode` parameter in your [/getOnboardingUrl](https://docs.adyen.com/api-explorer/Hop/latest/post/getOnboardingUrl) request. ## Customize platform name The name of your platform is shown on the welcome page.\ To change the name, you must send the `platformName` in your [/getOnboardingUrl](https://docs.adyen.com/api-explorer/Hop/latest/post/getOnboardingUrl) request. ## Override the default return URL After the account holders complete the onboarding or their session times out, they are redirected back to the default return URL configured in your platform account. To change this URL, send the `returnURL` object in your [/getOnboardingUrl](https://docs.adyen.com/api-explorer/Hop/latest/post/getOnboardingUrl) request.\ The maximum length of the URL is 500 characters.