POST api/ic/transferproducts
Request Information
URI Parameters
None.
Body Parameters
Collection of ProductTransferName | Description | Type | Additional information |
---|---|---|---|
Quantity | decimal number |
None. |
|
ProductCode | string |
None. |
|
SourceLocationCode | string |
None. |
|
DestinationLocationCode | string |
None. |
Request Formats
application/json, text/json
Sample:
[ { "Quantity": 1.0, "ProductCode": "sample string 2", "SourceLocationCode": "sample string 3", "DestinationLocationCode": "sample string 4" }, { "Quantity": 1.0, "ProductCode": "sample string 2", "SourceLocationCode": "sample string 3", "DestinationLocationCode": "sample string 4" } ]
application/xml, text/xml
Sample:
<ArrayOfProductTransfer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AccredoWeb.Model.IC"> <ProductTransfer> <DestinationLocationCode>sample string 4</DestinationLocationCode> <ProductCode>sample string 2</ProductCode> <Quantity>1</Quantity> <SourceLocationCode>sample string 3</SourceLocationCode> </ProductTransfer> <ProductTransfer> <DestinationLocationCode>sample string 4</DestinationLocationCode> <ProductCode>sample string 2</ProductCode> <Quantity>1</Quantity> <SourceLocationCode>sample string 3</SourceLocationCode> </ProductTransfer> </ArrayOfProductTransfer>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>