Disputes
When a user files a dispute and as the dispute progresses, we provide will send a webhook DISPUTE_STATUS_UPDATE
, which includes the details about the dispute.
Webhook Payload
Fields | Type | Description |
---|---|---|
type | string | Webhook Type: DISPUTE_STATUS_UPDATE |
signature | string | Webhook signature for verification |
data | Object | Webhook data |
data.id | string | Identifier for the Dispute |
data.createdAt | number | Dispute creation time in unix |
data.updatedAt | number | Dispute updated time in unix |
data.sourceUpdatedAt | number | Dispute source updated time in unix |
data.livemode | boolean | Sandbox/Production |
data.email | string | Email of user filing the dispute |
data.paymentPageId | string | Corresponding payment page ID for which dispute is filed |
data.status | string | Status of the dispute |
Possible values for status
:
- created
- pending
- completed
- expired
- failed
- needs_review
- approved
- declined
Updated 3 days ago