[optional] Callbacks
Let your systems know when your digital entity balance has changed
There are 3 types of callbacks:
pay-in
- sent to bank-recipientpay-out
- sent to bank-sendertransfer
- 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
Last updated