Skip to main content
POST
/
api
/
service
/
webhook-event
/
refund.succeeded
refund.succeeded
curl --request POST \
  --url https://{yourDomain}/api/service/webhook-event/refund.succeeded \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "<string>",
  "type": "refund.succeeded",
  "date": "<string>",
  "payload": {
    "id": "<string>",
    "amount": 1,
    "currency": "EUR",
    "status": "initiated",
    "orderId": "<string>",
    "transactionId": "<string>"
  }
}'

Body

application/json

Data of the webhook event

id
string
required

The unique id for the webhook.

type
enum<string>
required
Available options:
refund.succeeded
date
string
required

The date of the webhook.

payload
object
required

Successful refund data with id of the refunded order.

Response

200

OK

I