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 Revoked
A mandate has been revoked
POST
/
api
/
service
/
webhook-event
/
mandate-revoked
Copy
Ask AI
curl --request POST \
--url https://{yourDomain}/api/service/webhook-event/mandate-revoked \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>",
"type": "mandate_revoked",
"date": "<string>",
"payload": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"revokedAt": "<any>",
"referenceId": "<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-revoked \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>",
"type": "mandate_revoked",
"date": "<string>",
"payload": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"revokedAt": "<any>",
"referenceId": "<string>"
}
}'
Assistant
Responses are generated using AI and may contain mistakes.