Skip to content

ChargeBack

A Chargeback object, contains info on the dispute reason, status, and evidence submitted

Fields

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

Used By

Definition

"""
A Chargeback object, contains info on the dispute reason, status, and evidence submitted
"""
type ChargeBack {
"""
The payment in Healthie that was disputed
"""
billing_item: BillingItem
"""
The date and time the chargeback was initiated
"""
created_at: ISO8601DateTime!
"""
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: ISO8601DateTime
"""
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: ISO8601DateTime!
}