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
Mandate Setup Succeeded
A mandate setup has succeeded
POST
/
api
/
service
/
webhook-event
/
mandate-setup-succeeded
Copy
Ask AI
curl --request POST \
--url https://{yourDomain}/api/service/webhook-event/mandate-setup-succeeded \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>",
"type": "mandate_setup_succeeded",
"date": "<string>",
"payload": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"referenceId": "<string>",
"reference": "<string>",
"signature": {
"ip": "<string>",
"signedAt": "<any>",
"token": "<string>"
},
"creditor": {
"id": "<string>",
"name": "<string>",
"address": {
"street": "<string>",
"city": "<string>",
"postalCode": "<string>",
"country": "<string>"
}
},
"debtor": {
"account": {
"accountHolderName": "<string>",
"iban": "<string>",
"bic": "<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-succeeded \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>",
"type": "mandate_setup_succeeded",
"date": "<string>",
"payload": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"referenceId": "<string>",
"reference": "<string>",
"signature": {
"ip": "<string>",
"signedAt": "<any>",
"token": "<string>"
},
"creditor": {
"id": "<string>",
"name": "<string>",
"address": {
"street": "<string>",
"city": "<string>",
"postalCode": "<string>",
"country": "<string>"
}
},
"debtor": {
"account": {
"accountHolderName": "<string>",
"iban": "<string>",
"bic": "<string>"
}
}
}
}'
Assistant
Responses are generated using AI and may contain mistakes.