Version: 202506
Get dispute
GET/openapi/2025-06/shoplazza-payment/disputes/:id
Returns the details of a single dispute identified by its unique ID.
Request
Path Parameters
id stringrequired
Dispute order ID
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
codestring
error code
messagestring
error message
data object
dispute_order object
Detailed information of the dispute order
idstring
Dispute ID
transaction_order_idstring
Transaction order ID related to the dispute
original_order_idstring
Original order ID related to the transaction
store_idstring
Store ID
currencystring
Currency code of the dispute amount
created_atstring
Creation time of the dispute in ISO 8601 format
updated_atstring
Last updated time of the dispute in ISO 8601 format
expiration_timestring
Expiration time for responding to the dispute
dispute_reasonstring
Reason provided for the dispute
original_order_amountstring
Total amount of the original order
dispute_amountstring
Amount of the dispute
statusstring
Current status of the dispute. Possible values: won, lost, under_review, etc
feestring
Fees associated with the dispute
fee_currencystring
Currency of the associated fee
{
"code": "string",
"message": "string",
"data": {
"dispute_order": {
"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"
}
}
}