---
title: "Revolut Pay for API only"
description: "Add Revolut Pay to your API-only integration."
url: "https://docs.adyen.com/payment-methods/revolutpay/api-only"
source_url: "https://docs.adyen.com/payment-methods/revolutpay/api-only.md"
canonical: "https://docs.adyen.com/payment-methods/revolutpay/api-only"
last_modified: "2026-05-07T17:20:52+02:00"
language: "en"
---

# Revolut Pay for API only

Add Revolut Pay to your API-only integration.

You can add Revolut Pay to your existing integration. The following instructions show only what you must add to your integration specifically for Revolut Pay.

If an instruction on this page corresponds with a step in the main integration guide, it includes a link to corresponding step of the main integration guide.

## Requirements

| Requirement           | Description                                                                                                                                                                                                                |   |
| --------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | - |
| **Integration type**  | Make sure that you have an existing [API-only integration](/online-payments/build-your-integration/advanced-flow/?platform=Web\&integration=API%20only).                                                                   |   |
| **Redirect handling** | Make sure that your existing integration is set up to [handle the redirect](/online-payments/build-your-integration/advanced-flow/?platform=Web\&integration=API%20only#handle-the-redirect). `action.type`: **redirect**. |   |

## How it works

1. The shopper selects Revolut Pay as the payment method.
2. The shopper enters their details in the [payment form that you build](#build-your-payment-form).
3. The shopper is redirected to the Revolut Pay app (mobile devices) or a Revolut Pay hosted payment page (desktops or laptops) where four different sign-in methods are offered: QR code, email, SMS, and passkey.
4. The shopper authorizes the payment in the Revolut Pay app.

## Build your payment form

Include Revolut Pay in the list of [available payment methods](#get-pm). You do not need to collect any information from the shopper in your payment form.

You can [download the logo for Revolut Pay](/online-payments/build-your-integration/advanced-flow/?platform=Web\&integration=API%2Bonly\&version=71#downloading-logos) to use in your form.

## Get Revolut Pay as an available payment method

When you make the [/paymentMethods](https://docs.adyen.com/api-explorer/Checkout/latest/post/paymentMethods) to [get available payment methods](/online-payments/build-your-integration/advanced-flow/?platform=Web\&integration=API%20only#get-available-payment-methods), specify the following so that Revolut Pay is included in the response.

| Parameter                                                                                                          | Values                                                                                   |
| ------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------- |
| [amount.currency](https://docs.adyen.com/api-explorer/Checkout/latest/post/paymentMethods#request-amount-currency) | **EUR**, **GBP**, **PLN**, **RON**, **HUF**, **CHF**, **CZK**, **NOK**, **DKK**, **SEK** |

**Example request for available payment methods**

#### curl

```bash
curl https://checkout-test.adyen.com/v71/paymentMethods \
-H 'x-api-key: ADYEN_API_KEY' \
-H 'idempotency-key: YOUR_IDEMPOTENCY_KEY' \
-H 'content-type: application/json' \
-X POST
-d '{
   "merchantAccount": "ADYEN_MERCHANT_ACCOUNT",
   "amount": {
      "currency": "GBP",
	  "value": 1000
   }
}'
```

#### Java

```java
// Adyen Java API Library v41.1.0
import com.adyen.Client;
import com.adyen.enums.Environment;
import com.adyen.model.checkout.*;
import java.time.OffsetDateTime;
import java.util.*;
import com.adyen.model.RequestOptions;
import com.adyen.service.checkout.*;

// For the LIVE environment, also include your liveEndpointUrlPrefix.
Client client = new Client("ADYEN_API_KEY", Environment.TEST);

// Create the request object(s)
Amount amount = new Amount()
  .currency("GBP")
  .value(1000L);

PaymentMethodsRequest paymentMethodsRequest = new PaymentMethodsRequest()
  .amount(amount)
  .merchantAccount("ADYEN_MERCHANT_ACCOUNT");

// Send the request
PaymentsApi service = new PaymentsApi(client);
PaymentMethodsResponse response = service.paymentMethods(paymentMethodsRequest, new RequestOptions().idempotencyKey("UUID"));
```

#### PHP

```php
<?php
// Adyen PHP API Library v29.0.0
use Adyen\Client;
use Adyen\Environment;
use Adyen\Model\Checkout\Amount;
use Adyen\Model\Checkout\PaymentMethodsRequest;
use Adyen\Service\Checkout\PaymentsApi;

$client = new Client();
$client->setXApiKey("ADYEN_API_KEY");
// For the LIVE environment, also include your liveEndpointUrlPrefix.
$client->setEnvironment(Environment::TEST);


// Create the request object(s)
$amount = new Amount();
$amount
  ->setCurrency("GBP")
  ->setValue(1000);

$paymentMethodsRequest = new PaymentMethodsRequest();
$paymentMethodsRequest
  ->setAmount($amount)
  ->setMerchantAccount("ADYEN_MERCHANT_ACCOUNT");

$requestOptions['idempotencyKey'] = 'UUID';

// Send the request
$service = new PaymentsApi($client);
$response = $service->paymentMethods($paymentMethodsRequest, $requestOptions);
```

#### C\#

```cs
// Adyen .NET API Library v34.0.0
using Adyen;
using Environment = Adyen.Model.Environment;
using Adyen.Model;
using Adyen.Model.Checkout;
using Adyen.Service.Checkout;

// For the LIVE environment, also include your liveEndpointUrlPrefix.
var config = new Config()
{
    XApiKey = "ADYEN_API_KEY",
    Environment = Environment.Test
};
var client = new Client(config);

// Create the request object(s)
Amount amount = new Amount
{
  Currency = "GBP",
  Value = 1000
};

PaymentMethodsRequest paymentMethodsRequest = new PaymentMethodsRequest
{
  Amount = amount,
  MerchantAccount = "ADYEN_MERCHANT_ACCOUNT"
};

// Send the request
var service = new PaymentsService(client);
var response = service.PaymentMethods(paymentMethodsRequest, requestOptions: new RequestOptions { IdempotencyKey = "UUID"});
```

#### NodeJS (JavaScript)

```js
// Adyen Node API Library v30.1.0
const { Client, CheckoutAPI } = require('@adyen/api-library');

// For the LIVE environment, also include your liveEndpointUrlPrefix.
const config = new Config({
  apiKey: "ADYEN_API_KEY",
  environment: EnvironmentEnum.TEST
});

const client = new Client(config);

// Create the request object(s)
const paymentMethodsRequest = {
  merchantAccount: "ADYEN_MERCHANT_ACCOUNT",
  amount: {
    currency: "GBP",
    value: 1000
  }
}

// Send the request
const checkoutAPI = new CheckoutAPI(client);
const response = checkoutAPI.PaymentsApi.paymentMethods(paymentMethodsRequest, { idempotencyKey: "UUID" });
```

#### Go

```go
// Adyen Go API Library v21.2.0
import (
  "context"
  "github.com/adyen/adyen-go-api-library/v21/src/common"
  "github.com/adyen/adyen-go-api-library/v21/src/adyen"
  "github.com/adyen/adyen-go-api-library/v21/src/checkout"
)
// For the LIVE environment, also include your liveEndpointUrlPrefix.
client := adyen.NewClient(&common.Config{
  ApiKey:      "ADYEN_API_KEY",
  Environment: common.TestEnv,
})

// Create the request object(s)
amount := checkout.Amount{
  Currency: "GBP",
  Value: 1000,
}

paymentMethodsRequest := checkout.PaymentMethodsRequest{
  Amount: &amount,
  MerchantAccount: "ADYEN_MERCHANT_ACCOUNT",
}

// Send the request
service := client.Checkout()
req := service.PaymentsApi.PaymentMethodsInput().IdempotencyKey("UUID").PaymentMethodsRequest(paymentMethodsRequest)
res, httpRes, err := service.PaymentsApi.PaymentMethods(context.Background(), req)
```

#### Python

```py
# Adyen Python API Library v14.0.0
import Adyen

adyen = Adyen.Adyen()
adyen.client.xapikey = "ADYEN_API_KEY"
# For the LIVE environment, also include your liveEndpointUrlPrefix.
adyen.client.platform = "test" # The environment to use library in.

# Create the request object(s)
json_request = {
  "merchantAccount": "ADYEN_MERCHANT_ACCOUNT",
  "amount": {
    "currency": "GBP",
    "value": 1000
  }
}

# Send the request
result = adyen.checkout.payments_api.payment_methods(request=json_request, idempotency_key="UUID")
```

#### Ruby

```rb
# Adyen Ruby API Library v11.2.0
require "adyen-ruby-api-library"

adyen = Adyen::Client.new
adyen.api_key = 'ADYEN_API_KEY'
# For the LIVE environment, also include your liveEndpointUrlPrefix.
adyen.env = :test # Set to "live" for live environment

# Create the request object(s)
request_body = {
  :merchantAccount => 'ADYEN_MERCHANT_ACCOUNT',
  :amount => {
    :currency => 'GBP',
    :value => 1000
  }
}

# Send the request
result = adyen.checkout.payments_api.payment_methods(request_body, headers: { 'Idempotency-Key' => 'UUID' })
```

#### NodeJS (TypeScript)

```ts
// Adyen Node API Library v30.1.0
import { Client, CheckoutAPI, Types } from "@adyen/api-library";

// For the LIVE environment, also include your liveEndpointUrlPrefix.
const config = new Config({
  apiKey: "ADYEN_API_KEY",
  environment: EnvironmentEnum.TEST
});

const client = new Client(config);

// Create the request object(s)
const amount: Types.checkout.Amount = {
  currency: "GBP",
  value: 1000
};

const paymentMethodsRequest: Types.checkout.PaymentMethodsRequest = {
  amount: amount,
  merchantAccount: "ADYEN_MERCHANT_ACCOUNT"
};

// Send the request
const checkoutAPI = new CheckoutAPI(client);
const response = checkoutAPI.PaymentsApi.paymentMethods(paymentMethodsRequest, { idempotencyKey: "UUID" });
```

**Example response with Revolut Pay available**

```json
{
    "paymentMethods": [
        {
            "name": "Revolut Pay",
            "type": "revolutpay"
        }
    ]
}
```

## Add additional parameters to your /payments request

When you [make a payment](/online-payments/build-your-integration/advanced-flow/?platform=Web\&integration=API%20only#make-a-payment), add the following parameters:

| Parameter            | Required                                                                                    | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| -------------------- | ------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `paymentMethod.type` | ![-white\_check\_mark-](/user/data/smileys/emoji/white_check_mark.png "-white_check_mark-") | **revolutpay**                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| `shopperName`        |                                                                                             | The name of the person funding the money.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| `telephoneNumber`    |                                                                                             | The shopper's telephone number.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| `shopperEmail`       |                                                                                             | The email address of the person funding the money.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| `shopperStatement`   |                                                                                             | The text to be shown on the shopper's bank statement. Allowed characters: a-z, A-Z, 0-9, spaces, and special characters . , ' \_ - ? + \* /. The complete descriptor is built using the following format: `{base}{suffix}`, where: `{base}` is your Merchant name as specified in your Merchant settings at the time you added Revolut Pay to your merchant account. This name can't be changed afterward. `{suffix}` is defined by the value specified for the `shopperStatement` parameter. You can use <= 19 characters. We recommend sending a maximum of 22 characters for the complete descriptor, otherwise banks might truncate the string. |

**Example payment request for Revolut Pay**

#### curl

```bash
curl https://checkout-test.adyen.com/v71/payments \
-H 'x-API-key: ADYEN_API_KEY' \
-H 'idempotency-key: YOUR_IDEMPOTENCY_KEY' \
-H 'content-type: application/json' \
-X POST
-d '{
    "paymentMethod": {
        "type": "revolutpay"
        },
    "merchantAccount": "YOUR_MERCHANT_ACCOUNT",
    "reference": "YOUR_ORDER_NUMBER",
    "amount": {
        "currency": "GBP",
        "value": "1000"
        },
    "shopperName": {
        "firstName": "Simone",
        "lastName": "Hopper"
        },
    "telephoneNumber": "+44123456789",
    "shopperEmail": "s.hopper@example.com",
    "returnUrl": "https://your-company.example.com/checkout?shopperOrder=12xy.."
}'
```

#### Java

```java
// Adyen Java API Library v41.1.0
import com.adyen.Client;
import com.adyen.enums.Environment;
import com.adyen.model.checkout.*;
import java.time.OffsetDateTime;
import java.util.*;
import com.adyen.model.RequestOptions;
import com.adyen.service.checkout.*;

// For the LIVE environment, also include your liveEndpointUrlPrefix.
Client client = new Client("ADYEN_API_KEY", Environment.TEST);

// Create the request object(s)
// Send the request
PaymentsApi service = new PaymentsApi(client);
PaymentResponse response = service.payments(paymentRequest, new RequestOptions().idempotencyKey("UUID"));
```

#### PHP

```php
<?php
// Adyen PHP API Library v29.0.0
use Adyen\Client;
use Adyen\Environment;
use Adyen\Service\Checkout\PaymentsApi;

$client = new Client();
$client->setXApiKey("ADYEN_API_KEY");
// For the LIVE environment, also include your liveEndpointUrlPrefix.
$client->setEnvironment(Environment::TEST);


// Create the request object(s)
$requestOptions['idempotencyKey'] = 'UUID';

// Send the request
$service = new PaymentsApi($client);
$response = $service->payments($paymentRequest, $requestOptions);
```

#### C\#

```cs
// Adyen .NET API Library v34.0.0
using Adyen;
using Environment = Adyen.Model.Environment;
using Adyen.Model;
using Adyen.Model.Checkout;
using Adyen.Service.Checkout;

// For the LIVE environment, also include your liveEndpointUrlPrefix.
var config = new Config()
{
    XApiKey = "ADYEN_API_KEY",
    Environment = Environment.Test
};
var client = new Client(config);

// Create the request object(s)
// Send the request
var service = new PaymentsService(client);
var response = service.Payments(paymentRequest, requestOptions: new RequestOptions { IdempotencyKey = "UUID"});
```

#### NodeJS (JavaScript)

```js
// Adyen Node API Library v30.1.0
const { Client, CheckoutAPI } = require('@adyen/api-library');

// For the LIVE environment, also include your liveEndpointUrlPrefix.
const config = new Config({
  apiKey: "ADYEN_API_KEY",
  environment: EnvironmentEnum.TEST
});

const client = new Client(config);

// Create the request object(s)
const paymentRequest = {
  paymentMethod: {
    type: "revolutpay"
  },
  merchantAccount: "YOUR_MERCHANT_ACCOUNT",
  reference: "YOUR_ORDER_NUMBER",
  amount: {
    currency: "GBP",
    value: "1000"
  },
  shopperName: {
    firstName: "Simone",
    lastName: "Hopper"
  },
  telephoneNumber: "+44123456789",
  shopperEmail: "s.hopper@example.com",
  returnUrl: "https://your-company.example.com/checkout?shopperOrder=12xy.."
}

// Send the request
const checkoutAPI = new CheckoutAPI(client);
const response = checkoutAPI.PaymentsApi.payments(paymentRequest, { idempotencyKey: "UUID" });
```

#### Go

```go
// Adyen Go API Library v21.2.0
import (
  "context"
  "github.com/adyen/adyen-go-api-library/v21/src/common"
  "github.com/adyen/adyen-go-api-library/v21/src/adyen"
  "github.com/adyen/adyen-go-api-library/v21/src/checkout"
)
// For the LIVE environment, also include your liveEndpointUrlPrefix.
client := adyen.NewClient(&common.Config{
  ApiKey:      "ADYEN_API_KEY",
  Environment: common.TestEnv,
})

// Create the request object(s)
// Send the request
service := client.Checkout()
req := service.PaymentsApi.PaymentsInput().IdempotencyKey("UUID").PaymentRequest(paymentRequest)
res, httpRes, err := service.PaymentsApi.Payments(context.Background(), req)
```

#### Python

```py
# Adyen Python API Library v14.0.0
import Adyen

adyen = Adyen.Adyen()
adyen.client.xapikey = "ADYEN_API_KEY"
# For the LIVE environment, also include your liveEndpointUrlPrefix.
adyen.client.platform = "test" # The environment to use library in.

# Create the request object(s)
json_request = {
  "paymentMethod": {
    "type": "revolutpay"
  },
  "merchantAccount": "YOUR_MERCHANT_ACCOUNT",
  "reference": "YOUR_ORDER_NUMBER",
  "amount": {
    "currency": "GBP",
    "value": "1000"
  },
  "shopperName": {
    "firstName": "Simone",
    "lastName": "Hopper"
  },
  "telephoneNumber": "+44123456789",
  "shopperEmail": "s.hopper@example.com",
  "returnUrl": "https://your-company.example.com/checkout?shopperOrder=12xy.."
}

# Send the request
result = adyen.checkout.payments_api.payments(request=json_request, idempotency_key="UUID")
```

#### Ruby

```rb
# Adyen Ruby API Library v11.2.0
require "adyen-ruby-api-library"

adyen = Adyen::Client.new
adyen.api_key = 'ADYEN_API_KEY'
# For the LIVE environment, also include your liveEndpointUrlPrefix.
adyen.env = :test # Set to "live" for live environment

# Create the request object(s)
request_body = {
  :paymentMethod => {
    :type => 'revolutpay'
  },
  :merchantAccount => 'YOUR_MERCHANT_ACCOUNT',
  :reference => 'YOUR_ORDER_NUMBER',
  :amount => {
    :currency => 'GBP',
    :value => '1000'
  },
  :shopperName => {
    :firstName => 'Simone',
    :lastName => 'Hopper'
  },
  :telephoneNumber => '+44123456789',
  :shopperEmail => 's.hopper@example.com',
  :returnUrl => 'https://your-company.example.com/checkout?shopperOrder=12xy..'
}

# Send the request
result = adyen.checkout.payments_api.payments(request_body, headers: { 'Idempotency-Key' => 'UUID' })
```

#### NodeJS (TypeScript)

```ts
// Adyen Node API Library v30.1.0
import { Client, CheckoutAPI, Types } from "@adyen/api-library";

// For the LIVE environment, also include your liveEndpointUrlPrefix.
const config = new Config({
  apiKey: "ADYEN_API_KEY",
  environment: EnvironmentEnum.TEST
});

const client = new Client(config);

// Create the request object(s)
// Send the request
const checkoutAPI = new CheckoutAPI(client);
const response = checkoutAPI.PaymentsApi.payments(paymentRequest, { idempotencyKey: "UUID" });
```

The response includes the `action.type`: **redirect**.

**Example response with an additional action**

```json
{
    "resultCode":"RedirectShopper",
    "action":{
        "paymentMethodType":"revolutpay",
        "method":"GET",
        "url":"https://checkoutshopper-test.adyen.com/checkoutshopper/checkoutPaymentRedirect?redirectData=...",
        "type":"redirect"
    }
}
```

## Handle the redirect

1. To complete the payment, redirect the shopper to the `action.url` returned in the [/payments](https://docs.adyen.com/api-explorer/Checkout/latest/post/payments) response, taking into account the following recommendations:

   * When using the HTTP GET method:\
     For security reasons, when showing the redirect in the app, we recommend that you use [SFSafariViewController](https://developer.apple.com/documentation/safariservices/sfsafariviewcontroller) for iOS or [Chrome Custom Tabs](https://developer.chrome.com/multidevice/android/customtabs) for Android, instead of WebView objects. Also refer to the [security best practices](https://developer.android.com/topic/security/best-practices#webview) for WebView.
   * Redirection for mobile integrations:\
     For mobile integrations, we strongly recommended that you redirect the shopper to the default browser of their device. Redirecting to the default browser ensures the best compatibility, handling of multi-factor authentication, app-to-app redirection, and error handling.

2. After the shopper is redirected back to your website, check the payment result by making a POST [/payments/details](https://docs.adyen.com/api-explorer/Checkout/latest/post/payments/details) request, specifying:

   * `details`: object that contains the URL-decoded `redirectResult` returned when the shopper was redirected back to your site.

   **/payments/details request**

   ```json
   curl https://checkout-test.adyen.com/v71/payments/details \
   -H 'x-api-key: ADYEN_API_KEY' \
   -H 'content-type: application/json' \
   -d '{
       "details": {
           "redirectResult": "eyJ0cmFuc1N0YXR1cyI6IlkifQ=="
       }
   }'
   ```

   You receive a `/payments/details` response containing:

   * `resultCode`: Use this to present the result to your shopper.
   * `pspReference`: Our unique identifier for the transaction.

   **/payments/details response**

   ```json
   {
       "pspReference": "V4HZ4RBFJGXXGN82",
       "resultCode": "Authorised",
       "amount": {
           "currency": "GBP",
           "value": 1000
       },
       "merchantReference": "MerchantReference",
       "paymentMethod": {
           "type": "revolutpay"
       }
   }
   ```

## Show the payment result

Use the `resultCode` that you received in the `/payments/details` response to show your shopper the payment result.

The `resultCode` values you can receive for Revolut Pay are:

| resultCode              | Description                                                                  | Action to Take                                                                                                                                                                                                                         |
| ----------------------- | ---------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **Authorised**          | The payment was successful.                                                  | Inform the shopper that the payment has been successful. Ship the goods after you successfully [capture](#capture) the payment.                                                                                                        |
| **Cancelled**           | The shopper cancelled the payment while in the Revolut App.                  | Ask the shopper whether they want to continue with the order, or ask them to select a different payment method.                                                                                                                        |
| **Error**               | There was an error when the payment was being processed.                     | Inform the shopper that there was an error processing their payment. You'll receive a refusalReason in the same response, indicating the cause of the error.                                                                           |
| **Pending or Received** | The shopper has completed the payment but the final result is not yet known. | Inform the shopper that you have received their order, and are waiting for the payment to be completed. You will receive the final result of the payment in an [AUTHORISATION webhook](/development-resources/webhooks/webhook-types). |
| **Refused**             | The payment was refused by the provider.                                     | Ask the shopper to try the payment again using a different payment method.                                                                                                                                                             |

If the shopper fails to return to your website or app, wait for webhooks to know the outcome of the payment:

| eventCode         | success field | Description                                     | Action to take                                                                |
| ----------------- | ------------- | ----------------------------------------------- | ----------------------------------------------------------------------------- |
| **AUTHORISATION** | `false`       | The transaction failed.                         | Cancel the order and inform the shopper that the payment failed.              |
| **AUTHORISATION** | `true`        | The shopper successfully completed the payment. | Inform the shopper that the payment is successful and proceed with the order. |

## Capture the payment

Depending on your [capture](/online-payments/capture) settings, Revolut Pay payments are captured manually or automatically, with or without a delay.

If you use [manual capture](/online-payments/capture#manual-capture), or [delayed automatic capture](/online-payments/capture#delayed-automatic-capture), make sure to capture authorized Revolut Pay transactions within 7 days. After this timeframe, the authorization expires.

Partial captures are supported. However, any portion of the authorization that is not captured is permanently released and cannot be captured later (single capture).

Before you ship the goods, make sure that the payment is captured.

If you do not intend to capture the payment, [make a request to cancel the payment](/online-payments/cancel#cancel) and release the authorized balance amount. This returns the receivable credit back to the shopper.

## Refund a payment

Make a [/refunds](https://docs.adyen.com/api-explorer/Checkout/latest/post/payments/\(paymentPspReference\)/refunds) request to refund captured Revolut Pay payments. There is a twelve-month refund window for a payment after it has been captured.

## Test and go live

Test your Revolut Pay integration using the test environment by following these steps:

1. Add Revolut Pay to your [Customer Area](https://ca-test.adyen.com/).
2. Create a payment request with Revolut Pay and perform the redirect.
3. After you are redirected, select the option to continue in browser.\
   ![Step 3](/user/pages/reuse/payment-method-pages/revolutpay/testing/revolutpay_step3.png)
4. Use the phone number **+31613390484** and click Continue.
5. When prompted to provide your passcode, enter **124455**.
6. When prompted to provide your 6-digit code, click Autofill code in the top right corner of the modal.
7. Click Pay to proceed with the payment.
8. When prompted to scan the QR code, click Approve or Reject the payment in the top right corner of the modal. You are then redirected back to the `returnUrl`.\
   ![Step 8](/user/pages/reuse/payment-method-pages/revolutpay/testing/revolutpay_step8.png)

The test environment differs from the live Revolut Pay flow. Because there is no test version of the Revolut retail app, some interactions are simulated rather than replicated exactly. You can learn more about testing in the [Revolut developer documentation](https://developer.revolut.com/docs/guides/accept-payments/get-started/test-implementation/test-flows).

Check the status of Revolut Pay test payments in your [Customer Area](https://ca-test.adyen.com/) > **Transactions** > **Payments**.

Before you can accept live Revolut Pay payments, [submit a request for Revolut Pay](https://docs.adyen.com/payment-methods/add-payment-methods) in your [Customer Area](https://ca-live.adyen.com/).

## See also

* [API-only integration guide](/online-payments/build-your-integration/advanced-flow/?platform=Web\&integration=API%20only)
* [Webhooks](/development-resources/webhooks)
* [API Explorer](https://docs.adyen.com/api-explorer/#/CheckoutService/latest/overview)
