ro
Robokassa is a universal Russian payment gateway that accepts bank cards, e-wallets (WebMoney, QIWI), mobile payments, and internet banking. It generates MD5-signed payment links and provides a Merchant API for checking payment status.
With the Robokassa integration in AACFlow, you can:
- Create payment links: Generate signed payment URLs for customers to complete purchases
- Check payment status: Query the status of a specific transaction by invoice number
This integration enables payment link generation and status tracking for Russian e-commerce automation.
Nutzungsanleitung
Integrate Robokassa into the workflow. Requires a Merchant Login, Password #1 (for initiating payments), and Password #2 (for verifying payment status) from your Robokassa merchant account at merchant.robokassa.ru.
Tools
robokassa_payment
Create a payment link
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
merchantLogin | string | Ja | Robokassa merchant login |
password1 | string | Ja | Robokassa Password #1 |
invId | number | Ja | Merchant invoice number |
outSum | number | Ja | Payment amount |
description | string | Ja | Payment description |
isTest | boolean | Nein | Use test mode |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
paymentUrl | string | Signed payment URL |
success | boolean | Whether the link was generated |
robokassa_check_payment
Check payment status
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
merchantLogin | string | Ja | Robokassa merchant login |
password2 | string | Ja | Robokassa Password #2 |
invId | number | Ja | Invoice number to check |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
status | string | Payment status |
outSum | number | Payment amount |
success | boolean | Whether the query succeeded |
Links
- Official API: https://docs.robokassa.ru/
- AACFlow block source: apps/aacflow/blocks/blocks/robokassa.ts

