Przelewy 24

What kind of data I will get

By using this integration, you will get information about customer details obtained from verification bank transfer (usually 1 PLN amount)

Verification payment processing

On sandbox environment, there is no real payment processing and you will receive output instantly, whereas in production environment it is required to wait some time for bank to register and confirm transaction.

When user finishes interaction with widget, You will receive two webhooks:

  1. User interaction with widget was completed but some tasks have been being processed in background (awaiting workflow webhook)

  2. All tasks have been processed and workflow is fully completed (workflow completed webhook)

More information about this service you can find here

Response Content

przelewy24

AttributeTypeDescription

object

Verification Payment result

verificationPayment

AttributeTypeDescription

email

string

Email address of the recipient of the payment

name

string

Full name of the recipient of the payment

street

string

Street address of the recipient of the payment

city

string

City of the recipient of the payment

postCode

string

Postal code of the recipient of the payment

iban

string

IBAN of the recipient of the payment

originalString

string

Original string provided for verification

Example response

{
    "przelewy24": {
        "verificationPayment": {
            "email": "tech@transactionlink.io",
            "name": "Jan Testowy",
            "street": "Konwaliowa 6",
            "city": "Komorniki",
            "postCode": "62-052",
            "iban": "11124055271111001084658665",
            "originalString": "Jan Testowy KONWALIOWA 6 62-052 KOMORNIKI PL "
        }
    }
}

Last updated