Disputes
All disputes related to the shop.
View-Specific Information
Select
The driver uses the Shopify API to process WHERE clause conditions built with the following columns and operators. The driver processes other filters client-side within the driver.
- Id supports the '=, IN' comparison operators.
- Status supports the '=, !=' comparison operators.
- InitiatedAt supports the '=, <, >, >=, <=' comparison operators.
For example, the following queries are processed server-side:
SELECT * FROM Disputes WHERE Id = 'Val1'
SELECT * FROM Disputes WHERE Status = 'Val1'
SELECT * FROM Disputes WHERE InitiatedAt = '2023-01-01 11:10:00'
Columns
| Name | Type | References | Description |
| Id [KEY] | String | A globally-unique ID. | |
| LegacyResourceId | String | The ID of the corresponding resource in the REST Admin API. | |
| EvidenceDueBy | Date | The deadline for evidence submission. | |
| EvidenceSentOn | Date | The date when evidence was sent. Returns null if evidence hasn't yet been sent. | |
| Status | String | The current state of the dispute. | |
| Type | String | Indicates if this dispute is still in the inquiry phase or has turned into a chargeback. | |
| FinalizedOn | Date | The date when this dispute was resolved. Returns null if the dispute isn't yet resolved. | |
| InitiatedAt | Datetime | The date when this dispute was initiated. | |
| Amount | Decimal | Decimal money amount. | |
| AmountCurrencyCode | String | Currency of the money. | |
| OrderId | String | A globally-unique ID. | |
| ReasonDetailsReason | String | The reason for the dispute provided by the cardholder's banks. | |
| ReasonDetailsNetworkReasonCode | String | The raw code provided by the payment network. |