> For the complete documentation index, see [llms.txt](https://docs.transactionlink.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.transactionlink.io/docs/v1/integrations/przelewy-24.md).

# 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](https://www.transactionlink.io/integrations/przelewy24)

### Response Content

#### przelewy24

<table><thead><tr><th width="260">Attribute</th><th>Type</th><th>Description</th></tr></thead><tbody><tr><td><a href="#verificationpayment"><code>verificationPayment</code></a></td><td><code>object</code></td><td>Verification Payment result</td></tr></tbody></table>

#### **verificationPayment**

| 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      |

#### Example response

```json
{
    "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 "
        }
    }
}
```
