POST
/
api
/
service
/
webhook-event
/
payout-created
curl --request POST \
  --url https://{yourDomain}/api/service/webhook-event/payout-created \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "<string>",
  "type": "payout_created",
  "date": "<string>",
  "payload": {
    "id": "<string>",
    "merchant": "<string>",
    "currency": "EUR",
    "amount": 123,
    "status": "paid",
    "description": "<string>",
    "arrivalDate": "<any>",
    "statementDescriptor": "<string>",
    "createdAt": "<any>",
    "updatedAt": "<any>",
    "paymentReference": "<string>",
    "fxId": "<string>"
  }
}'

Body

application/json

Data of the webhook event

The body is of type object.

Response

200

OK