Gets all refund order items for an order
Name | Type | Description |
---|---|---|
pkOrderId | Guid | Primary key for order |
The following request format is required for this method.
GET | POST https://eu-ext.linnworks.net/api/ProcessedOrders/GetRefunds
Connection: keep-alive
Accept: application/json
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Accept-Encoding: gzip, deflate
Authorization: INSERT_YOUR_TOKEN_HERE
This is an example of the request structure. Results will vary depending on your data.
pkOrderId=670614a5-1b58-41ff-a33a-f961c3337a22
This is an example of the response JSON. Results will vary depending on your data.
[
{
"pkRefundRowId": "ef6898d3-f933-4b07-9023-99eb5585feff",
"SKU": "sample string 1",
"ItemTitle": "sample string 2",
"IsItem": true,
"IsService": true,
"Amount": 5.1,
"Reason": "sample string 6",
"Actioned": true,
"ActionDate": "2023-01-10T13:49:50.3329743+00:00",
"ReturnReference": "sample string 8",
"Cost": 1.1,
"RefundStatus": 0,
"IgnoredValidation": true,
"fkOrderItemRowId": "f14f8cd5-9a9d-4386-895f-5ec4ef5c57f2",
"ShouldSerializeChannelReason": false,
"ChannelReason": "sample string 10",
"ShouldSerializeChannelReasonSec": false,
"ChannelReasonSec": "sample string 11"
}
]