curl --request POST \
--url https://{yourDomain}/api/service/webhook-event/deposit-received \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>",
"type": "deposit.received",
"date": "<string>",
"payload": {
"depositId": "<string>",
"value": {
"currency": "<string>",
"amount": "<string>"
},
"bankStatementReference": "<string>",
"receivedAt": "<any>"
}
}'
A deposit has been received
curl --request POST \
--url https://{yourDomain}/api/service/webhook-event/deposit-received \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>",
"type": "deposit.received",
"date": "<string>",
"payload": {
"depositId": "<string>",
"value": {
"currency": "<string>",
"amount": "<string>"
},
"bankStatementReference": "<string>",
"receivedAt": "<any>"
}
}'
Data of the webhook event
The body is of type object
.
OK
Was this page helpful?