Use this call to refund one or more services on an order. Please check that any automated refunds are valid prior to calling this method.
Name | Type | Description |
---|---|---|
pkOrderId | Guid | The id of the order to refund services for. |
refundItems | List<RefundItem> | Refunds for service items |
The following request format is required for this method.
POST https://eu-ext.linnworks.net//api/ProcessedOrders/RefundServices HTTP/1.1
Host: eu-ext.linnworks.net
Connection: keep-alive
Accept: application/json, text/javascript, */*; q=0.01
Origin: https://www.linnworks.net
Accept-Language: en
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Referer: https://www.linnworks.net/
Accept-Encoding: gzip, deflate
Authorization: INSERT_YOUR_TOKEN_HERE
pkOrderId=358a2e22-d60f-451c-a272-e21b811dbdf7&refundItems=[
{
"pkRefundRowId": "d8d9803f-1030-4295-b169-d99b89c56238",
"IsManualRefund": true,
"Type": 1,
"fkOrderItemId": "42c8054b-1e17-45d7-99db-da92d2d02e48",
"RefundQty": 2,
"RefundAmount": 3.1,
"Reason": "sample string 4",
"ChannelReason": "sample string 5",
"ChannelReasonSec": "sample string 6"
},
{
"pkRefundRowId": "d8d9803f-1030-4295-b169-d99b89c56238",
"IsManualRefund": true,
"Type": 1,
"fkOrderItemId": "42c8054b-1e17-45d7-99db-da92d2d02e48",
"RefundQty": 2,
"RefundAmount": 3.1,
"Reason": "sample string 4",
"ChannelReason": "sample string 5",
"ChannelReasonSec": "sample string 6"
}
]
This is an example response. Results may vary depending on your data.
[
{
"pkRefundRowId": "bf3d7364-4745-4d8b-a924-8152714c57e4",
"SKU": "sample string 1",
"ItemTitle": "sample string 2",
"IsItem": true,
"IsService": true,
"Amount": 5.1,
"Reason": "sample string 6",
"Actioned": true,
"ActionDate": "2019-11-28T09:46:00.1042505+00:00",
"ReturnReference": "sample string 8",
"Cost": 1.1,
"RefundStatus": 0,
"IgnoredValidation": true,
"fkOrderItemRowId": "e56abbae-e332-4976-bb79-66770ad3364e",
"ShouldSerializeChannelReason": false,
"ChannelReason": "sample string 10",
"ShouldSerializeChannelReasonSec": false,
"ChannelReasonSec": "sample string 11"
},
{
"pkRefundRowId": "bf3d7364-4745-4d8b-a924-8152714c57e4",
"SKU": "sample string 1",
"ItemTitle": "sample string 2",
"IsItem": true,
"IsService": true,
"Amount": 5.1,
"Reason": "sample string 6",
"Actioned": true,
"ActionDate": "2019-11-28T09:46:00.1042505+00:00",
"ReturnReference": "sample string 8",
"Cost": 1.1,
"RefundStatus": 0,
"IgnoredValidation": true,
"fkOrderItemRowId": "e56abbae-e332-4976-bb79-66770ad3364e",
"ShouldSerializeChannelReason": false,
"ChannelReason": "sample string 10",
"ShouldSerializeChannelReasonSec": false,
"ChannelReasonSec": "sample string 11"
}
]