Przelewy24

What kind of data I will get

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

Input data definition

Only an email address is required to process verification payment. The user can provide his email address on the widget.

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 informations about this service you can find here

Output data

In the output, you will receive customer details

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

Output data model structure

A detailed description of the response structure using the swagger standard.

openapi: 3.0.1
info:
  title: TL Przelewy24 output model definition
  version: v1
  
paths: {}
components:
  schemas:
    Przelewy24:
      type: object
      required: 
        - przelewy24
      properties:
        przelewy24:
          type: object
          required:
            - email
            - name
            - street
            - city
            - postCode
            - iban
            - originalString
          properties:
            email:
              type: string
            name:
              type: string
            street:
              type: string
            city: 
              type: string
            postCode:
              type: string
            originalString:
              type: string