List order refund records
GET/openapi/2026-07/orders/:order_id/refund
Returns all refund records attached to the specified order, along with the order's payment and order status at the moment of query.
Request
Path Parameters
Order ID
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
waiting: pending paymentpaying: payment under reviewauthorized: authorizedpartially_paid: partially paidpaid: paidcancelled: cancelledfailed: payment failedrefunding: refund in progressrefund_failed: refund failedrefunded: fully refundedpartially_refunded: partially refundedopened: pending paymentcancelled: cancelledplaced: in progressfinished: completed- Array [
pending: refund in progressfinished: refund completedfailed: refund failed- Array [
- ]
- Array [
pending: refund in progressfinished: refund completedfailed: refund failed- ]
- Array [
- ]
- ]
error code
error message
data object
Payment status of the order:
Order status:
records object[]
List of refund records associated with the order
Refund record ID
Refund price
Shipping refund
Refund Shipping Tax
Refund method
Refund status:
Note
Time when the refund record was created (e.g., 2018-11-02T12:30:10Z)
Time when the refund record was last updated (e.g., 2018-11-02T12:30:10Z)
refund_line_items object[]
List of refund line items
ID of the order line item being refunded
Refund quantity
Tax
Discount
Subtotal
Total
Delete quantity
payment_details object[]
Payment details
Refund record ID
Payment line ID
Payment channel
Payment method
Refund price
Refund status:
Time when the refund was completed
Additional total
additional_prices object[]
Additional prices
Name of the additional charge
Amount of the additional charge
Business ID
Custom Charge Name
Tip refund amount
Order ID
{
"code": "string",
"message": "string",
"data": {
"order_financial_status": "string",
"order_status": "string",
"records": [
{
"id": "string",
"refund_price": "string",
"refund_shipping": "string",
"refund_shipping_tax": "string",
"refund_method": "string",
"refund_status": "string",
"note": "string",
"created_at": "string",
"updated_at": "string",
"refund_line_items": [
{
"line_item_id": "string",
"refund_quantity": 0,
"tax": "string",
"discount": "string",
"sub_total": "string",
"total": "string",
"delete_quantity": 0
}
],
"payment_details": [
{
"id": "string",
"payment_line_id": "string",
"payment_channel": "string",
"payment_method": "string",
"refund_price": "string",
"refund_status": "string",
"finished_at": "string"
}
],
"additional_total": "string",
"additional_prices": [
{
"name": "string",
"price": "string",
"biz_id": "string",
"fee_title": "string"
}
],
"refund_tip": "string",
"order_id": "string"
}
]
}
}