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
Name | Description | Type | Additional information |
---|---|---|---|
id |
Order identifier |
globally unique identifier |
Required |
Body Parameters
Order stock receive options object
OrderStockReceiveName | Description | Type | Additional 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": "0563962e-3e9b-480c-b301-0579de580743", "operatorGuid": "79f050f9-957b-479e-84ef-4d2d54393984", "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>79f050f9-957b-479e-84ef-4d2d54393984</OperatorGuid> <OrderIdentifier>0563962e-3e9b-480c-b301-0579de580743</OrderIdentifier> </OrderStockReceive>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.