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.
Usage Instructions
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
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
merchantLogin | string | Yes | Robokassa merchant login |
password1 | string | Yes | Robokassa Password #1 |
invId | number | Yes | Merchant invoice number |
outSum | number | Yes | Payment amount |
description | string | Yes | Payment description |
isTest | boolean | No | Use test mode |
Output
| Parameter | Type | Description |
|---|---|---|
paymentUrl | string | Signed payment URL |
success | boolean | Whether the link was generated |
robokassa_check_payment
Check payment status
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
merchantLogin | string | Yes | Robokassa merchant login |
password2 | string | Yes | Robokassa Password #2 |
invId | number | Yes | Invoice number to check |
Output
| Parameter | Type | Description |
|---|---|---|
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

