Acknowledges error responses for a given refund header
Name | Type | Description |
---|---|---|
request | AcknowledgeRefundErrorsRequest | The request class for this call |
The following request format is required for this method.
POST https://eu-ext.linnworks.net/api/ReturnsRefunds/AcknowledgeRefundErrors
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={
"RefundHeaderId": 1,
"RefundRowIds": [
"2dd52f69-5862-473b-9170-fcc2df5451f4"
],
"AcknowledgeAllErrors": true
}
This is an example of the response JSON. Results will vary depending on your data.
{
"EntireRefundHeaderSetToErrorAcked": true,
"RefundHeaderId": 1,
"RefundReference": "sample string 2",
"Status": {
"StatusHeader": 0,
"StatusDetail": {
"StatusTag": "sample string 1",
"StatusDescription": "sample string 2",
"Actionable": true,
"ActionDescription": "sample string 4",
"EditableFields": [
"sample string 1"
]
}
},
"CannotRefundReason": 0,
"Errors": [
"sample string 1"
],
"RefundLines": null
}