No momento, esta página não está disponível em português
Payment-method icon

Walley Android Drop-in integration

Add Walley to an existing Drop-in integration.

If you are using Android Drop-in v5.0.0 or later:

This payment method requires no additional configuration.

Follow the Drop-in integration guide.

Adyen's Android Drop-in renders Walley in your payment form, and redirects the shopper to complete the payment.

Requirements

The Android Drop-in integration works the same way for all payment methods. If you haven't done this integration yet, refer to our Drop-in integration guide.

Requirement Description
Integration type Make sure that you have built your Drop-in integration.

Walley for Android works with all versions of Drop-in.

Setup steps Before you begin, contact our Support Team to add Walley in your test Customer Area.

Show Walley in your payment form

Drop-in uses the countryCode and the amount.currency from your /paymentMethods request to show the available payment methods to your shopper. To show walley for business-to-consumer and walley_b2b for business-to-business in the list of available payment methods:

  1. Use the following table to specify parameters in a /paymentMethods request:

    Country/region countryCode amount.currency
    Denmark DK DKK
    Finland FI EUR
    Norway NO NOK
    Sweden SE SEK

Payments in Denmark (DK) or with the DKK currency are available only for B2C payments.

API response

After the shopper enters their payment details, Drop-in returns paymentComponentData.paymentMethod. Pass this to your server and make a payment request.

Make a payment

When the shopper proceeds to pay, Drop-in returns the paymentComponentData.paymentMethod.

  1. Pass the paymentComponentData.paymentMethod value to your server.

  2. From your server, make a /payments request, specifying:

    • paymentMethod: The paymentComponentData.paymentMethod from your client app. The API response contains paymentMethod.type: walley for business-to-consumer, and paymentMethod.type: walley_b2b for business-to-business.
    • returnURL: The URL the shopper is redirected to after they complete the payment. This URL can have a maximum of 1024 characters. Get this URL from the Component in the RedirectComponent.getReturnUrl(context).