POST api/Store/CheckDuplicateOrder
Request Information
URI Parameters
None.
Body Parameters
OrderCheck| Name | Description | Type | Additional information | 
|---|---|---|---|
| Customerid | integer | None. | |
| TotalItems | integer | None. | |
| Orders | Collection of OrderAttribute | None. | 
Request Formats
application/json, text/json
            Sample:
        
{
  "Customerid": 1,
  "TotalItems": 2,
  "Orders": [
    {
      "Item": 1,
      "Quantity": 2
    },
    {
      "Item": 1,
      "Quantity": 2
    }
  ]
}
        application/xml, text/xml
            Sample:
        
<OrderCheck xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Customerid>1</Customerid>
  <TotalItems>2</TotalItems>
  <Orders>
    <OrderAttribute>
      <Item>1</Item>
      <Quantity>2</Quantity>
    </OrderAttribute>
    <OrderAttribute>
      <Item>1</Item>
      <Quantity>2</Quantity>
    </OrderAttribute>
  </Orders>
</OrderCheck>
        application/x-www-form-urlencoded
            Sample:
    
Sample not available.
Response Information
Resource Description
VCAPIResponse| Name | Description | Type | Additional information | 
|---|---|---|---|
| Version | string | None. | |
| dateTime | string | None. | |
| StatusCode | integer | None. | |
| ErrorMessage | string | None. | |
| Result | Object | None. | 
Response Formats
application/json, text/json
            Sample:
        
{
  "Version": "1.0.0",
  "dateTime": "2025/10/31 15:47:31",
  "StatusCode": 1,
  "ErrorMessage": "sample string 2",
  "Result": {}
}
        application/xml, text/xml
            Sample:
<VCAPIResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <StatusCode>1</StatusCode> <ErrorMessage>sample string 2</ErrorMessage> <Result /> </VCAPIResponse>