Przelewy24 Payments

Przelewy24 is a Poland-based real-time online bank transfer payment method, often referred to as P24. Przelewy24 is a supported browser payment method in the MasterCard Payment Gateway. This page describes integration details specific to Przelewy24.

It is recommended that you read the integration guidelines for browser payments before building the Przelewy24 integration.

Przelewy24 browser payments are only supported for transactions in the EUR and PLN currency.

Prerequisites

To offer the Przelewy24 payment method through the MasterCard Payment Gateway,

  • you must be registered with your browser payments service provider
  • your merchant profile on the Mastercard Payment Gateway must be configured using the details of your account with the browser payments service provider, and
  • you must have a bank account in one of the supported currencies that are registered against your merchant account at your browser payments service provider.

Przelewy24 Integration

Przelewy24 through Hosted Checkout

Hosted Checkout integration allows you to collect payment details from your payer through an interaction that the MasterCard Payment Gateway hosts and displays.

From the API version 65 onward, Przelewy24 is automatically available as a payment method once your payment service provider enables and configures you for this payment method.

For details, see Browser Payments via Hosted Checkout Integration.

Przelewy24 through Direct Payment

Direct Payment integration allows you to offer the Przelewy24 payment method on your own checkout page.

Przelewy24 is supported from the API version 64 onward.

In addition to the standard fields required in a browser payment request, provide the following fields in the Initiate Browser Payment request:

Common Fields

  • sourceOfFunds.type = Przelewy24
  • browserPayment.operation = PAY (Przelewy24 does not support the Authorize operation)
  • customer.email = Email address of a payer
  • sourceOfFunds.provided.przelewy24.bankAccountHolder = Name of the bank account holder for the payer's bank account

Preferred Language

You can set the language that you prefer Przelewy24 to use for the pages that are displayed to the payer by providing the browserPayment.preferredLanguage field in the Initiate Browser Payment request. However, the language will be used only if Przelewy24 supports it.

Sample Code to initiate Przelewy24 Payment
{
    "apiOperation": "INITIATE_BROWSER_PAYMENT",
    "billing": {
        "address": {
            "country": "POL"
        }
    },
    "browserPayment": {
        "operation": "PAY",
        "returnUrl": "<your_merchant_URL>"
    },
    "customer": {
        "email": "john.smith@example.com"
    },
    "order": {
        "amount": 100,
        "currency": "PLN"
    },
    "sourceOfFunds": {
        "type": "PRZELEWY24",
        "provided": {
            "przelewy24": {
                "bankAccountHolder": "Test Tester"
            }
        }
    }
}
        

How to Interpret the Transaction Result

The table specifies the transaction response codes for the possible scenarios that you may encounter after initiating the Przelewy24 payment.

Initiate Browser Payment Response What This Means...
response.gatewayCode=SUBMITTED
result=SUCCESS
Redirect the payer using the URL provided in the response.
Retrieve Transaction/Retrieve Order Response What This Means...
response.gatewayCode=APPROVED
result=SUCCESS
The payment is successful.
response.gatewayCode=PENDING
result=PENDING
The MasterCard Payment Gateway is waiting for a notification from the acquirer about the payment result. Try RETRIEVE_TRANSACTION again later or listen to notifications from the MasterCard Payment Gateway.
response.gatewayCode=CANCELLED
result=FAILURE
The payer has canceled the interaction for this payment. Offer the payer the option to try another payment method.
response.gatewayCode=DECLINED or ACQUIRER_SYSTEM_ERROR
result=FAILURE
The payment was declined. Offer the payer the option to try another payment method. In case of an ACQUIRER_SYSTEM_ERROR, you may want to inquire with the acquirer about the reason for the payment failure, or you can try RETRIEVE_TRANSACTION again.
response.gatewayCode=TIMED_OUT
result=FAILURE
Treat this as a declined payment. The MasterCard Payment Gateway will make an attempt to ensure the transaction is not successful or will revert the transaction.

Refunds

You can refund the Przelewy24 payments in installments or in full. Ensure that you are configured for refunds on the Mastercard Payment Gateway and on your merchant account at your browser payments service provider.

Testing Your Integration

The MasterCard Payment Gateway provides a browser payments emulator that allows you to test your Przelewy24 integration.

Copyright © 2023 MasterCard