POST api/order/{id}/stockReceive

Update an order and change it's status to Stock Receive. Performs logical updates for this

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Order identifier

globally unique identifier

Required

Body Parameters

Order stock receive options object

OrderStockReceive
NameDescriptionTypeAdditional information
OrderIdentifier

Order to stock receive

globally unique identifier

None.

OperatorGuid

Operator guid, of user performing stock receive

globally unique identifier

None.

CostIncludesFreight

If costs are to be updated, do they include freight or should it be added

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "orderIdentifier": "be759703-4652-4f5a-8a0b-c341c2a24b36",
  "operatorGuid": "0ccffdde-5d29-4e55-8ac4-ef4b65895425",
  "costIncludesFreight": true
}

application/xml, text/xml

Sample:
<OrderStockReceive xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EziManager.Models.EMC.Orders">
  <CostIncludesFreight>true</CostIncludesFreight>
  <OperatorGuid>0ccffdde-5d29-4e55-8ac4-ef4b65895425</OperatorGuid>
  <OrderIdentifier>be759703-4652-4f5a-8a0b-c341c2a24b36</OrderIdentifier>
</OrderStockReceive>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.