List Disputes
GET/openapi/2024-07/shoplazza-payment/disputes
Returns a list of Dispute objects. The objects are sorted in descending order by creation date, with the most recently created object appearing first.
Request
Query Parameters
cursor for pagination, use the cursor from the response for pagination
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
Filter option: dispute status (e.g., "lost", "won", "warning_closed", "needs_response", "under_review", "warning_under_review", "warning_needs_response")
lost: The dispute was resolved against the merchant, and the funds were not recovered. won: The dispute was resolved in favor of the merchant, and the funds were retained or recovered. warning_closed: The dispute case was closed following a warning; no further action is required. needs_response: The dispute requires a response or evidence from the merchant to proceed. under_review: The dispute is currently under review by the payment processor or financial institution. warning_under_review: The dispute received a warning and is under review; further action may be needed. warning_needs_response: The dispute has a warning and requires a response from the merchant to avoid further escalation.
Filter option: dispute creation start time (unix timestamp)
Filter option: dispute creation end time (unix timestamp)
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
- Array [
- ]
error code
error message
data object
Response: Dispute order list
Whether there is more data
list object[]
List of dispute orders
Dispute order ID
Transaction order ID
Original order ID
Store ID
Account currency
Creation time (unix timestamp)
Last updated time (unix timestamp)
Expiration time (unix timestamp)
Dispute reason
Original order amount
Dispute amount
Status (e.g., "lost", "won", "warning_closed", "needs_response", "under_review", "warning_under_review", "warning_needs_response") lost: The dispute was resolved against the merchant, and the funds were not recovered. won: The dispute was resolved in favor of the merchant, and the funds were retained or recovered. warning_closed: The dispute case was closed following a warning; no further action is required. needs_response: The dispute requires a response or evidence from the merchant to proceed. under_review: The dispute is currently under review by the payment processor or financial institution. warning_under_review: The dispute received a warning and is under review; further action may be needed. warning_needs_response: The dispute has a warning and requires a response from the merchant to avoid further escalation.
Dispute fee
Fee currency
cursor for pagination
{
"code": "string",
"message": "string",
"data": {
"has_more": true,
"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"
}
}