For the complete documentation index, see llms.txt. This page is also available as Markdown.

BLIK(redirect)

BLIK is a local payment method in Poland that allows users to complete payments through their banking app.

This endpoint allows you to submit a payin by BLIK in Poland.

After the payment order is created successfully, Pagsmile returns a pay_url. Redirect the user to the pay_url to continue and complete the payment.

BLIK supports real-time payment processing.

BLIK supports partial refund.

The supported amount range is 0.01 to 50000 PLN per transaction. Most issuers may have a limit of 10000 PLN per transaction.

POST https://gateway.pagsmile.com/trade/pay

Request Body

Parameter
Type
Required
Constraints
Description

app_id

string

Required

Max length: 32

The merchant application ID assigned by Pagsmile.

out_trade_no

string

Required

Max length: 64

Merchant order number. Must be unique.

method

string

Required

Fixed value: BLIK

Payment method.

order_currency

string

Required

Fixed value: PLN

Payment currency.

order_amount

string

Required

Min: 0.01; max: 50000; most issuers may have a limit of 10000 per transaction

Payment amount.

subject

string

Required

Max length: 128

Payment subject or order title.

content

string

Optional

Max length: 255

Payment content or order description.

timestamp

string

Required

Format: yyyy-MM-dd HH:mm:ss; max length: 19

Request timestamp.

notify_url

string

Required

Valid URL

The URL to receive payment notifications.

buyer_id

string

Required

Max length: 64

Merchant-side user ID.

customer.name

string

Required

Max length: 128

Customer's name.

customer.email

string

Required

Valid email address

Customer's email address.

Request Sample

Response Sample

After receiving the pay_url, redirect the user to the pay_url to continue the payment.

Last updated