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>"
}
}'
A payout has been 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>"
}
}'
Data of the webhook event
The body is of type object
.
OK
Was this page helpful?