POST api/FWebMobile/Warehouse/LegacyWhseMove
Request Information
URI Parameters
None.
Body Parameters
LegacyWarehouseMoveRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | string |
None. |
|
| SourceLocationId | string |
None. |
|
| ProductId | string |
None. |
|
| Lot | string |
None. |
|
| PackageCode | string |
None. |
|
| UnitWeight | decimal number |
None. |
|
| PackageQuantity | integer |
None. |
|
| PalletQuantity | integer |
None. |
|
| SpecificInboundIdNo | string |
None. |
|
| Context | WarehouseTransactionContext |
None. |
|
| PutawayLocationId | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerId": "sample string 1",
"SourceLocationId": "SAMPLE STRING 2",
"ProductId": "sample string 3",
"Lot": "sample string 4",
"PackageCode": "sample string 5",
"UnitWeight": 6.0,
"PackageQuantity": 7,
"PalletQuantity": 8,
"SpecificInboundIdNo": "sample string 9",
"Context": {
"TransactionType": 1,
"TransactionIdNo": 1,
"EmployeeIdNo": 2,
"GeoLocationIdNo": 3,
"WarehouseLocationIdNo": 4,
"CompanyCode": "sample string 5",
"DcCostCenterId": "sample string 6",
"DcWarehouseId": "sample string 7",
"IsBarcodingEnabled": true,
"EmployeeFirstName": "sample string 9",
"EmployeeLastName": "sample string 10",
"EmployeeFullName": "sample string 9 sample string 10",
"WarehouseDescription": "sample string 11",
"ValidDoorLocations": [
"sample string 1",
"sample string 2"
],
"ValidWarehouseLocations": null
},
"PutawayLocationId": "SAMPLE STRING 10"
}
text/html
Sample:
{"CustomerId":"sample string 1","SourceLocationId":"SAMPLE STRING 2","ProductId":"sample string 3","Lot":"sample string 4","PackageCode":"sample string 5","UnitWeight":6.0,"PackageQuantity":7,"PalletQuantity":8,"SpecificInboundIdNo":"sample string 9","Context":{"TransactionType":1,"TransactionIdNo":1,"EmployeeIdNo":2,"GeoLocationIdNo":3,"WarehouseLocationIdNo":4,"CompanyCode":"sample string 5","DcCostCenterId":"sample string 6","DcWarehouseId":"sample string 7","IsBarcodingEnabled":true,"EmployeeFirstName":"sample string 9","EmployeeLastName":"sample string 10","EmployeeFullName":"sample string 9 sample string 10","WarehouseDescription":"sample string 11","ValidDoorLocations":["sample string 1","sample string 2"],"ValidWarehouseLocations":null},"PutawayLocationId":"SAMPLE STRING 10"}
Response Information
Resource Description
GenericTransactionResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ReturnedObject | Object |
None. |
|
| IsSuccessful |
Indicates if the transaction was successful or not. |
boolean |
None. |
| ReturnedMessages |
Contains a list of Informational, Warning, and/or Error messages regarding the outcome of the transaction. |
Collection of ReturnedMessage |
None. |
Response Formats
application/json, text/json
Sample:
{
"ReturnedObject": {},
"IsSuccessful": true,
"ReturnedMessages": null
}
text/html
Sample:
{"ReturnedObject":{},"IsSuccessful":true,"ReturnedMessages":null}