POST api/PurchaseOrders/MarkError
Adds RowError on Purchase Order Export object with the specified PurchaseOrderGuid.
200 OK - If received response is valid and is accepted
401 Unauthorized - If credentials are invalid
404 NotFound - If a Purchase Order with specified guid couldnt be found
500 Internal Server Error
Required Headers:
Authorization: Basic Http Authorization with valid Sertica credentials
Request Information
URI Parameters
None.
Body Parameters
Object containing PurchaseOrderGuid and Error for error marking.
PurchaseOrderMarkError| Name | Description | Type | Additional information |
|---|---|---|---|
| PurchaseOrderGuid | string |
None. |
|
| Error | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PurchaseOrderGuid": "sample string 1",
"Error": "sample string 2"
}
application/xml, text/xml
Sample:
<PurchaseOrderMarkError xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <PurchaseOrderGuid>sample string 1</PurchaseOrderGuid> <Error>sample string 2</Error> </PurchaseOrderMarkError>
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |