Webhook-Event
- POSTTest
- POSTOrder Created
- POSTOrder Updated
- POSTMerchant Updated
- POSTRefund Initiated
- POSTRefund Succeededdeprecated
- POSTRefund Succeeded
- POSTRefund Faileddeprecated
- 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
- POSTMerchant Payout Created
- POSTMerchant Payout Updated
- POSTMandate Setup Started
- POSTMandate Setup Succeeded
- POSTMandate Setup Failed
- POSTMandate Revoked
- POSTPayout Initiated
- POSTPayout Paid
- POSTPayout Failed
Webhook-Event
Mandate Setup Failed
A mandate setup has failed
POST
/
api
/
service
/
webhook-event
/
mandate-setup-failed
Copy
Ask AI
curl --request POST \
--url https://{yourDomain}/api/service/webhook-event/mandate-setup-failed \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>",
"type": "mandate_setup_failed",
"date": "<string>",
"payload": {
"referenceId": "<string>",
"existingMandateId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"error": {
"code": "<string>",
"message": "<string>"
}
}
}'
Body
application/json
Data of the webhook event
The body is of type object
.
Response
200
OK
Copy
Ask AI
curl --request POST \
--url https://{yourDomain}/api/service/webhook-event/mandate-setup-failed \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>",
"type": "mandate_setup_failed",
"date": "<string>",
"payload": {
"referenceId": "<string>",
"existingMandateId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"error": {
"code": "<string>",
"message": "<string>"
}
}
}'
Assistant
Responses are generated using AI and may contain mistakes.