OBJECT
ChargeBack
A Chargeback object, contains info on the dispute reason, status, and evidence submitted
link GraphQL Schema definition
- type ChargeBack {
- # The payment in Healthie that was disputed
- BillingItem :
- # The date and time the chargeback was initiated
- String :
- # The amount that was disputed
- String :
- # Evidence to contest the chargeback
- ChargeBackEvidence :
- # Fields that should be submitted for this chargeback
- String] : [
- # The dispute fee charged by the payment processor
- String :
- # A formatted version of the reason
- String :
- # A formatted version of the status
- String :
- # The unique identifier of the chargeback
- ID! :
- # The reason for the chargeback. Matches Stripe's list of reasons at
- # https://stripe.com/docs/api/disputes/object?lang=ruby
- String :
- # The date and time that evidence needs to be submitted by
- String :
- # The status of the chargeback
- String :
- # The total cost of the chargeback. Includes both the disputed amount and the fee
- String :
- }