Skip to main content

Pay with card registration option

In the context described, the action parameter with the value pay_register will be used to request the loading of the specific form required.

This action will trigger the presentation of a user interface that will show a screen with all the elements and fields necessary to carry out the registration process successfully. This screen will allow users to enter and provide the required information such as personal details, payment details and any other relevant data.

The objective of this functionality is to provide users with an intuitive and efficient experience when registering in the system. By displaying all necessary items and fields on a single screen, the process is simplified and streamlined, allowing users to complete registration more quickly and seamlessly.

The inclusion of these relevant elements and fields ensures that all essential data is captured for successful registration. This may include fields such as name, address, contact information, credit card or other payment method details, and any additional information that is necessary or required based on system requirements.

Imagen
  • The answer in this case at the end of the flow would be the following structure:
<Tabs
defaultValue="card"
values={[
{ label: 'Card', value: 'card' },
{ label: 'Yape', value: 'yape' },
]}
>
<TabItem value="card">
<PayRegister />
</TabItem>
<TabItem value="yape">
<PayRegisterYape />
</TabItem>
</Tabs>
Detail

For detailed parameter definitions, please visit the Parameters definition section.