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": "7454794d-3ffe-42ab-853a-b9c2294de26a", "operatorGuid": "5dd0f898-278c-4288-9055-41799c2e1be4", "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>5dd0f898-278c-4288-9055-41799c2e1be4</OperatorGuid> <OrderIdentifier>7454794d-3ffe-42ab-853a-b9c2294de26a</OrderIdentifier> </OrderStockReceive>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.