Skip to main content

How Express works

This is how Express works with the ePayment API. Express streamlines the checkout process by letting customers select shipping options and confirm delivery details directly within the Vipps MobilePay app.

This page shows the customer's journey from clicking the Express button through order confirmation.

Detailsโ€‹

1. Customer clicks the Express buttonโ€‹

On a merchant's website or app, the customer sees an Express button on the product page or in the shopping cart. They click it to begin the streamlined checkout process.

For button design guidelines and translations, see Button guidelines.

Express button for Vipps

2. The merchant creates an Express payment requestโ€‹

When the customer clicks the Express button, the merchant creates an Express payment request with POST:/epayment/v1/payments.

The request includes:

  • paymentMethod.type set to WALLET
  • profile.scope set to "name address email phoneNumber" (all four are required)
  • shipping.fixedOptions or shipping.dynamicOptions with available shipping methods

For implementation details and code examples, see Create an Express payment.

3. Customer opens the Vipps/MobilePay appโ€‹

If the payment was started from a mobile device, the Vipps Vipps or MobilePay MobilePay app will automatically open.

If the payment was started on a desktop device, the landing page will open. There, the customer enters their phone number and clicks Next to send the payment request to the app on their phone.

4. Customer consents to share profile informationโ€‹

Before seeing the payment amount, the customer is asked to consent to sharing their name, address, phone number, and email with the merchant.

This consent is required for Express, so the merchant can fulfill and ship the order.

User information consent screen in Vipps

For more about profile sharing and privacy, see:

5. Customer selects their shipping optionโ€‹

After consenting, the customer sees the available shipping options. They can:

  • View their current delivery address
  • Change their address if needed
  • Select from different shipping methods (home delivery, pickup points, etc.)
  • Choose specific delivery times or locations

Shipping options for Vipps

The customer can update their address by selecting it:

Choosing address in Vipps

If multiple shipping options are available, they can select Change to view all options:

Choosing shipping options in Vipps

For details about configuring shipping options, see Shipping options.

6. Customer confirms the total payment amountโ€‹

Once the customer has selected their shipping option, the total amount (product price + shipping cost) is displayed. The customer reviews the final amount and confirms the payment.

The ePayment API automatically reserves the total payment amount.

7. The merchant receives the order detailsโ€‹

After the customer confirms the payment, the merchant receives:

For details about the response, see Get payment details.

8. The merchant completes the order and shippingโ€‹

The merchant uses the provided address and shipping preferences to fulfill and ship the order.

Optionally, the merchant can add order information and tracking links using the Order Management API, which will display in the customer's app.

9. The merchant captures the paymentโ€‹

The merchant captures the payment through the ePayment API using POST:/epayment/v1/payments/{reference}/capture.

The payment is transferred to the merchant's account. This may take 2 or 3 days, depending on the bank.

Fixed vs. dynamic shipping optionsโ€‹

Merchants can provide shipping options in two ways:

Fixed options - When you know all shipping options in advance, include them in the payment request. This is faster and simpler. See Fixed options.

Dynamic options - When shipping options depend on the customer's address, register a callback endpoint. After the customer consents, we'll send their address to your endpoint, and you respond with available shipping options. See Dynamic options.

Limitationsโ€‹

  • The shipping address must be within the same country as the merchant's sales unit registration
  • The transaction currency must match the country where the sales unit is registered

For complete details, see Limitations.

Next stepsโ€‹

See Express feature documentation for complete technical implementation details, API specifications, and code examples.

See Recommended flows: Online payments for a streamlined overview of both standard and Express flows.