Callbacks
Let your systems know when your digital entity balance has changed
Depending on transfer type the following callbacks are sent:
External transfer:
/pay-in
- sent to bank-recipient/pay-out
- sent to bank-sender
Internal transfer:
/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
Last updated