Returns a paged list of booked refund headers
Name | Type | Description |
---|---|---|
request | GetActionableRefundHeadersRequest | The request class for this call |
The following request format is required for this method.
GET | POST https://eu-ext.linnworks.net/api/ReturnsRefunds/GetActionableRefundHeaders
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={
"Page": 1,
"Filters": {
"Actionable": true,
"Type": 0,
"Value": "sample string 1"
}
}
This is an example of the response JSON. Results will vary depending on your data.
{
"Page": 1,
"TotalHeaders": 2,
"HeadersPerPage": 3,
"RefundHeaders": [
{
"RefundHeaderId": 1,
"OrderId": "0f3c147f-ea8b-462d-a4b4-c4e9023e214e",
"NumOrderId": 3,
"ExternalReference": "sample string 4",
"CreatedDate": "2023-01-10T13:49:46.6452235+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.6452235+00:00",
"OrderSource": "sample string 10",
"OrderSubSource": "sample string 11",
"ChannelInitiated": true,
"RefundLines": null,
"RefundLink": "sample string 13"
}
]
}