POST api/ic/transferproduct
Request Information
URI Parameters
None.
Body Parameters
ProductTransfer| Name | 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"
}
application/xml, text/xml
Sample:
<ProductTransfer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AccredoWeb.Model.IC"> <DestinationLocationCode>sample string 4</DestinationLocationCode> <ProductCode>sample string 2</ProductCode> <Quantity>1</Quantity> <SourceLocationCode>sample string 3</SourceLocationCode> </ProductTransfer>
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>