Webhook
Webhook-Subscription
Webhook-Event
Payout Created
A beneficiary payout has been created
POST
/
webhook-event
/
payout-created
curl --request POST \
--url https://{yourDomain}/webhook-event/payout-created \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>",
"type": "test",
"date": "<string>",
"payload": {
"id": "<string>",
"merchant": "<string>",
"status": "paid",
"amount": 123,
"currency": "EUR",
"description": "<string>",
"arrivalDate": "2023-11-07T05:31:56Z",
"statementDescriptor": "<string>",
"updatedAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"paymentReference": "<string>",
"fxId": "<string>"
}
}'
Body
application/json
Data of the webhook event
The body is of type object
.
Response
200
OK
curl --request POST \
--url https://{yourDomain}/webhook-event/payout-created \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>",
"type": "test",
"date": "<string>",
"payload": {
"id": "<string>",
"merchant": "<string>",
"status": "paid",
"amount": 123,
"currency": "EUR",
"description": "<string>",
"arrivalDate": "2023-11-07T05:31:56Z",
"statementDescriptor": "<string>",
"updatedAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"paymentReference": "<string>",
"fxId": "<string>"
}
}'
Assistant
Responses are generated using AI and may contain mistakes.