Integration Guide for Banks
[ENG] Integration Guide for Bank
[ENG] Integration Guide for Bank
  • General
    • 💰Overview
      • Transfers between digitized entities
        • Option 1. Fast transfer
        • Option 2. Standard transfer (optional)
      • Version history
      • API change log
      • Glossary
    • 🌐Common requirements
    • 👉Basic use case
    • 📅Integration Plan
      • Integration Plan - Business
      • Integration Plan - Technical Team
      • Multisignature
    • ❗Error messages
  • 🛠️API methods
    • Authentification
      • Authorization via JWT
      • Bank authorization
      • JWT format
    • Emlpoyee
      • How to add a user to a role
      • Role management
    • Customer
      • Segments
    • Digital entity
    • Identifiers
    • Transfer
      • Multisignature for transfers
      • [optional] Callbacks
      • Category
    • Limits
    • Reconciliation
    • [optional] Branch
      • Branch access
      • How to add employee to branch
      • Filter by branch
      • Transfers (branches)
      • Branch digital entity
Powered by GitBook
On this page
  • POST /pay-in
  • POST /pay-out
  • POST /transfer
  1. API methods
  2. Transfer

[optional] Callbacks

Let your systems know when your digital entity balance has changed

PreviousMultisignature for transfersNextCategory

Last updated 1 year ago

There are 3 types of callbacks:

  1. pay-in - sent to bank-recipient

  2. pay-out - sent to bank-sender

  3. transfer- sent to the recipient (and it is a sender as well)

The call-back process is shown on the diagram:

POST /pay-in

Request example

curl -location https://{host_bank_receiver}/api/dcm/notify/pay-in
--data '{
    "transaction_id": "d3626591-7e01-4346-9f53-ddea6d7d17bd"
}'

Response example

200 OK

POST /pay-out

Request example

curl -location https://{host_bank_sender}/api/dcm/notify/pay-out
--data '{
    "transaction_id": "d3626591-7e01-4346-9f53-ddea6d7d17bd"
}'

Response example

200 OK

POST /transfer

Request example

curl -location https://{host_bank_sender/receiver}/api/dcm/notify/transfer
--data '{
    "transaction_id": "d3626591-7e01-4346-9f53-ddea6d7d17bd"
}'

Response example

200 OK

Full data about the transfer you can check via .

Full data about payment you can check via .

Full data about payment you can check via .

🛠️
Transfer
Transfer
Transfer