Webhook-Event
- POSTTest
- POSTOrder Created
- POSTOrder Updated
- POSTMerchant Updated
- POSTRefund Succeeded
- POSTRefund Failed
- POSTUser Payout Initiated
- POSTUser Payout Paid
- POSTUser Payout Failed
- POSTPayout Report Requested
- POSTData Session Completed
- POSTCheckout Session Created
- POSTCheckout Session Updated
- POSTCheckout Session Expired
- POSTCheckout Session Completed
- POSTPayout Created
- POSTPayout Updated
- POSTMandate Setup Started
- POSTMandate Setup Succeeded
- POSTMandate Setup Failed
- POSTMandate Revoked
Webhook-Event
Payout Created
A payout has been created
POST
/
api
/
service
/
webhook-event
/
payout-created
Copy
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
Copy
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>"
}
}'
Assistant
Responses are generated using AI and may contain mistakes.