Tochka Bank
Zahlungen akzeptieren, Fiskalbelege ausstellen und Salden über die Tochka Bank Open-Banking-API abfragen
Tochka Bank (Точка Банк) is a leading Russian digital bank for businesses. Its Open Banking API supports card and SBP (Faster Payments System) payments, 54-ФЗ fiscal receipts, payment status lookups, bank statement queries, and webhook notifications.
With the Tochka Bank integration in AACFlow, you can:
- Create payments: Initiate card, SBP, or Tinkoff-hosted payment sessions
- Create invoice receipts: Issue 54-ФЗ compliant fiscal receipts
- Get payment status: Check the current status of a transaction
- List payments: Enumerate all payments in an account
- Get balance: Retrieve current account balance
- Get statement: Download an account statement for a date range
This integration enables end-to-end payment automation and banking operations for Russian business workflows.
Nutzungsanleitung
Integrate Tochka Bank into the workflow. Requires a Tochka Bank API key from your business account. Connect via Settings → Integrations → Tochka in AACFlow.
Tools
tochka_create_payment
Create a payment
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
apiKey | string | Ja | Tochka Bank API key |
amount | number | Ja | Payment amount in kopecks |
currency | string | Ja | Currency code (e.g. RUB) |
description | string | Ja | Payment description |
paymentType | string | Nein | Payment type (card, sbp, tinkoff) |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
paymentId | string | Created payment ID |
url | string | Payment URL |
status | string | Initial payment status |
tochka_create_invoice_receipt
Issue a 54-ФЗ fiscal receipt
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
apiKey | string | Ja | Tochka Bank API key |
amount | number | Ja | Receipt total amount |
items | array | Ja | Array of receipt line items |
email | string | Nein | Customer email for receipt delivery |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
receiptId | string | Fiscal receipt ID |
success | boolean | Whether the receipt was created |
tochka_get_payment_status
Check payment status
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
apiKey | string | Ja | Tochka Bank API key |
paymentId | string | Ja | Payment ID to check |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
status | string | Current payment status |
amount | number | Payment amount |
tochka_get_balance
Retrieve account balance
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
apiKey | string | Ja | Tochka Bank API key |
accountId | string | Nein | Specific account ID (uses default if omitted) |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
balance | number | Current account balance |
currency | string | Account currency |
Links
- Official API: https://enter.tochka.com/doc/v2/
- AACFlow block source: apps/aacflow/blocks/blocks/tochka.ts

