Callbacks

Let your systems know when your digital entity balance has changed

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"
}'

Full data about the transfer you can check via Transfer.

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"
}'

Full data about payment you can check via Transfer.

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"
}'

Full data about payment you can check via Transfer.

Response example

200 OK

Last updated