Returns all refund headers associated with the given order ID
Name | Type | Description |
---|---|---|
request | GetRefundHeadersByOrderIdRequest | The request class for this call |
The following request format is required for this method.
GET | POST https://eu-ext.linnworks.net/api/ReturnsRefunds/GetRefundHeadersByOrderId
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.
request={
"OrderId": "59e07f01-8114-4bd0-9206-94b5c1774aab"
}
This is an example of the response JSON. Results will vary depending on your data.
{
"RefundHeaders": [
{
"RefundHeaderId": 1,
"OrderId": "770ca5bd-e7e2-41ee-b137-8b5197ccbb25",
"NumOrderId": 3,
"ExternalReference": "sample string 4",
"CreatedDate": "2023-01-10T13:49:46.6843336+00:00",
"Currency": "sample string 6",
"Amount": 7.0,
"Status": {
"StatusHeader": 0,
"StatusDetail": {
"StatusTag": "sample string 1",
"StatusDescription": "sample string 2",
"Actionable": true,
"ActionDescription": "sample string 4",
"EditableFields": [
"sample string 1"
]
}
},
"Actioned": true,
"LastActionDate": "2023-01-10T13:49:46.6843336+00:00",
"OrderSource": "sample string 10",
"OrderSubSource": "sample string 11",
"ChannelInitiated": true,
"RefundLines": null,
"RefundLink": "sample string 13"
}
]
}