Перейти до основного вмісту

ROCKET

Підключення платіжного методу ROCKET вимагає використання direct-інтеграції. Запит на створення платежу повинен містити такі параметри:

ParameterTypeRequiredDescription
pos_idUUIDMerchant's identifier (POS_ID)
modeMODEdirect
methodMETHODPayment method (purchase)
amountNumberTransaction amount. Must be a positive number. The number of decimal digits must be less than or equal to 2 (e.g., 100.00, 250, 50.50)
currencyCURRENCYTransaction currency (ISO_4217)
order_3ds_bypassString3-D Secure flow option
order_idStringUnique identifier of order
descriptionStringPayment description
paywayStringwallet
server_urlURLWebhook notification will be sent to this URL
result_urlURLCustomer will be redirected to this URL after payment.
customer_emailStringpayer’s email
properties.instrument_typeStringInstrument type
properties.instrument_methodStringInstrument method

Приклад запиту:

{
"pos_id": "'$POS_ID'",
"mode": "direct",
"amount": 5,
"method": "purchase",
"currency": "BDT",
"payway": "wallet",
"order_3ds_bypass": "supported",
"customer_email": "[email protected]",
"description": "Test description",
"order_id": "'$ORDER_ID'",
"properties": {
"instrument_type": "wallet",
"instrument_method": "WALLET_ROCKET"
},
"server_url": "https://callback.blackhole.com/callback",
"result_url": "https://example.com/result"
}