Amount refunded
42.00 USD
POST a Stripe-style charge.refunded event to this URL and get back a clean, structured alert: money formatted, who was refunded, why, and when. Configure a webhook secret and it fans out to Slack.
POST / content-type: application/json
{
"type": "charge.refunded",
"data": {
"object": {
"id": "ch_3P9x2c...",
"amount_refunded": 4200,
"currency": "usd",
"customer": "cus_Q7pLmN4kXyZ",
"created": 1721390400,
"refunds": { "data": [{ "reason": "requested_by_customer" }] }
}
}
}
Try it: curl -X POST this URL with the JSON above, or just reload to see the example rendered.