Przelewy 24
By using this integration, you will get information about customer details obtained from verification bank transfer (usually 1 PLN amount)
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)
Attribute | Type | Description |
---|---|---|
object | Verification Payment result |
Attribute | Type | Description |
---|---|---|
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 |
{
"przelewy24": {
"verificationPayment": {
"email": "[email protected]",
"name": "Jan Testowy",
"street": "Konwaliowa 6",
"city": "Komorniki",
"postCode": "62-052",
"iban": "11124055271111001084658665",
"originalString": "Jan Testowy KONWALIOWA 6 62-052 KOMORNIKI PL "
}
}
}
Last modified 1mo ago