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
  • billing_item: BillingItem
  • # The date and time the chargeback was initiated
  • created_at: String!
  • # The amount that was disputed
  • disputed_amount: String
  • # Evidence to contest the chargeback
  • evidence: ChargeBackEvidence
  • # Fields that should be submitted for this chargeback
  • evidence_fields_to_submit: [String]
  • # The dispute fee charged by the payment processor
  • fee: String
  • # A formatted version of the reason
  • formatted_reason: String
  • # A formatted version of the status
  • formatted_status: String
  • # The unique identifier of the chargeback
  • id: ID!
  • # The reason for the chargeback. Matches Stripe's list of reasons at
  • # https://stripe.com/docs/api/disputes/object?lang=ruby
  • reason: String
  • # The date and time that evidence needs to be submitted by
  • response_required_by: String
  • # The status of the chargeback
  • status: String
  • # The total cost of the chargeback. Includes both the disputed amount and the fee
  • total_amount: String
  • # The date and time the chargeback was last updated
  • updated_at: String!
  • }