POST api/OutletStock/AssignNonTrackableStockToHeadquarter
Request Information
URI Parameters
None.
Body Parameters
AssignNonTrackableStockToHeadquarterRequestName | Description | Type | Additional information |
---|---|---|---|
ProductID | integer |
None. |
|
ProductVariantID | integer |
None. |
|
OutletID | integer |
None. |
|
Quantity | integer |
None. |
|
CreatedByUserID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "ProductID": 1, "ProductVariantID": 2, "OutletID": 3, "Quantity": 4, "CreatedByUserID": 5 }
application/xml, text/xml
Sample:
<AssignNonTrackableStockToHeadquarterRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.Request"> <CreatedByUserID>5</CreatedByUserID> <OutletID>3</OutletID> <ProductID>1</ProductID> <ProductVariantID>2</ProductVariantID> <Quantity>4</Quantity> </AssignNonTrackableStockToHeadquarterRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseDetailName | Description | Type | Additional information |
---|---|---|---|
ResponseCode | integer |
None. |
|
ResponseText | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "ResponseCode": 1, "ResponseText": "sample string 2" }
application/xml, text/xml
Sample:
<ResponseDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel"> <ResponseCode>1</ResponseCode> <ResponseText>sample string 2</ResponseText> </ResponseDetail>