{
"id": "msg_xxxxxxxxxxxxxxxxxxxxxxxx",
"api_version": "v1",
"timestamp": "2025-01-01T00:00:00.000Z",
"type": "refund.updated",
"data": {
"id": "rf_xxxxxxxxxxxxxxx",
"amount": 6.9,
"currency": "usd",
"status": "pending",
"created_at": "2023-12-01T05:00:00.401Z",
"provider": "stripe",
"provider_created_at": "2023-12-01T05:00:00.401Z",
"reference_status": "available",
"reference_type": "acquirer_reference_number",
"reference_value": "74850120752",
"payment": {
"id": "pay_xxxxxxxxxxxxxx",
"total": 6.9,
"subtotal": 6.9,
"usd_total": 6.9,
"currency": "usd",
"created_at": "2023-12-01T05:00:00.401Z",
"paid_at": "2023-12-01T05:00:00.401Z",
"dispute_alerted_at": "2023-12-01T05:00:00.401Z",
"payment_method_type": "acss_debit",
"billing_reason": "subscription_create",
"card_brand": "mastercard",
"card_last4": "4242",
"tax_amount": 6.9,
"tax_behavior": "exclusive",
"tax_refunded_amount": 6.9,
"user": {
"id": "user_xxxxxxxxxxxxx",
"name": "John Doe",
"username": "johndoe42",
"email": "john.doe@example.com"
},
"member": {
"id": "<string>",
"phone": "<string>"
},
"membership": {
"id": "mem_xxxxxxxxxxxxxx",
"status": "trialing"
}
}
},
"company_id": "biz_xxxxxxxxxxxxxx"
}Sent when a refund is updated
Required permissions:
payment:basic:readmember:email:readmember:basic:readmember:phone:readwebhook_receive:refunds{
"id": "msg_xxxxxxxxxxxxxxxxxxxxxxxx",
"api_version": "v1",
"timestamp": "2025-01-01T00:00:00.000Z",
"type": "refund.updated",
"data": {
"id": "rf_xxxxxxxxxxxxxxx",
"amount": 6.9,
"currency": "usd",
"status": "pending",
"created_at": "2023-12-01T05:00:00.401Z",
"provider": "stripe",
"provider_created_at": "2023-12-01T05:00:00.401Z",
"reference_status": "available",
"reference_type": "acquirer_reference_number",
"reference_value": "74850120752",
"payment": {
"id": "pay_xxxxxxxxxxxxxx",
"total": 6.9,
"subtotal": 6.9,
"usd_total": 6.9,
"currency": "usd",
"created_at": "2023-12-01T05:00:00.401Z",
"paid_at": "2023-12-01T05:00:00.401Z",
"dispute_alerted_at": "2023-12-01T05:00:00.401Z",
"payment_method_type": "acss_debit",
"billing_reason": "subscription_create",
"card_brand": "mastercard",
"card_last4": "4242",
"tax_amount": 6.9,
"tax_behavior": "exclusive",
"tax_refunded_amount": 6.9,
"user": {
"id": "user_xxxxxxxxxxxxx",
"name": "John Doe",
"username": "johndoe42",
"email": "john.doe@example.com"
},
"member": {
"id": "<string>",
"phone": "<string>"
},
"membership": {
"id": "mem_xxxxxxxxxxxxxx",
"status": "trialing"
}
}
},
"company_id": "biz_xxxxxxxxxxxxxx"
}A unique identifier for this webhook request
"msg_xxxxxxxxxxxxxxxxxxxxxxxx"
The signature of the webhook request with the webhook version prepended
"v1,BASE64ENCODEDSIGNATURE"
The timestamp in seconds since the Unix epoch that the webhook was sent at on the server
"1727606400"
A unique ID for every single webhook request
"msg_xxxxxxxxxxxxxxxxxxxxxxxx"
The API version for this webhook
"v1""v1"
The timestamp in ISO 8601 format that the webhook was sent at on the server
"2025-01-01T00:00:00.000Z"
The webhook event type
"refund.updated""refund.updated"
A refund represents a full or partial reversal of a payment, including the amount, status, and payment provider.
Show child attributes
The company ID that this webhook event is associated with
"biz_xxxxxxxxxxxxxx"
Return a 200 status to indicate that the data was received successfully
Was this page helpful?