List disputes
GET/openapi/2026-07/shoplazza-payment/disputes
Returns a paginated list of disputes, optionally filtered by status and creation time range.
Request
Query Parameters
lost: dispute resolved against the merchant; funds were not recoveredwon: dispute resolved in favor of the merchant; funds were retained or recoveredwarning_closed: warning-type dispute case closed; no further action requiredneeds_response: dispute requires a response or evidence from the merchant to proceedunder_review: dispute is being reviewed by the payment processor or financial institutionwarning_under_review: warning-type dispute is under review; further action may be neededwarning_needs_response: warning-type dispute awaiting merchant response to avoid escalation
Cursor for pagination
Page size (1-100, default 10)
Filter disputes by status:
Filter disputes created at or after this Unix timestamp (e.g., 1730548810)
Filter disputes created at or before this Unix timestamp (e.g., 1730548810)
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
- Array [
- ]
error code
error message
data object
list object[]
List of dispute records
Dispute ID
Transaction order ID related to the dispute
Original order ID related to the transaction
Store ID
Currency code of the dispute amount
Creation time of the dispute in ISO 8601 format
Last updated time of the dispute in ISO 8601 format
Expiration time for responding to the dispute
Reason provided for the dispute
Total amount of the original order
Amount of the dispute
Current status of the dispute. Possible values: won, lost, under_review, etc
Fees associated with the dispute
Currency of the associated fee
Cursor for pagination
Whether there are more records
{
"code": "string",
"message": "string",
"data": {
"list": [
{
"id": "string",
"transaction_order_id": "string",
"original_order_id": "string",
"store_id": "string",
"currency": "string",
"created_at": "string",
"updated_at": "string",
"expiration_time": "string",
"dispute_reason": "string",
"original_order_amount": "string",
"dispute_amount": "string",
"status": "string",
"fee": "string",
"fee_currency": "string"
}
],
"cursor": "string",
"has_more": true
}
}