Skip to main content
POST
/
api
/
service
/
webhook-event
/
deposit.received
deposit.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>",
    "transactionId": "<string>",
    "receivedAt": "<any>"
  }
}'

Body

application/json

Data of the webhook event

id
string
required

The unique id for the webhook.

type
enum<string>
required
Available options:
deposit.received
date
string
required

The date of the webhook.

payload
object
required

The received deposit data.

Response

200

OK

I