POST api/Items/MarkError

Adds RowError on Item Export and Item Supplier Export objects with the specified Item Guid

200 OK - If received response is valid and is accepted
401 Unauthorized - If credentials are invalid
404 NotFound - If no Item with specified guid was be found
500 Internal Server Error
Required Headers:
Authorization: Basic Http Authorization with valid Sertica credentials

Request Information

URI Parameters

None.

Body Parameters

List of Items mark as error

Collection of SparePartMarkError
NameDescriptionTypeAdditional information
ItemGuid

string

None.

Error

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "ItemGuid": "sample string 1",
    "Error": "sample string 2"
  },
  {
    "ItemGuid": "sample string 1",
    "Error": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfSparePartMarkError xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <SparePartMarkError>
    <ItemGuid>sample string 1</ItemGuid>
    <Error>sample string 2</Error>
  </SparePartMarkError>
  <SparePartMarkError>
    <ItemGuid>sample string 1</ItemGuid>
    <Error>sample string 2</Error>
  </SparePartMarkError>
</ArrayOfSparePartMarkError>

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.