batchRefundRowInput
Input row for refund processing, used to submit a batch refund request.
input batchRefundRowInput {
orderRowId: Int!
quantity: Int
amount: Float
}
Fields
orderRowId ● Int!
ID of the order row to be refunded.
quantity ● Int
Quantity of items to be refunded. If this is null, all items will be set as refunded.
amount ● Float
Amount to be refunded in the same currency as the order. If this is null, the full amount will be refunded.
Example
{
"orderRowId": 210033,
"quantity": 2,
"amount": 20
}