This document is used for:
material movement confirmations
Prerequisites:
In order to use this API Method for PUT there must be accomplished the following requirements in SocrateCloud:
to have an Organization active
to have an Role active
Material Movement Stock Lines/Details/Response
Attached serial numbers of one confimation line
URL: https://api.socratecloud.com/scwi/rest/stock_line/full/transfer_confirm/{version}?startRow={0}&endRow={100}&accessToken={access_token}&LocationWarehouse_ID={warehouse_ID}
Mandatory parameter: LocationWarehouse_ID - generic warehouse ID or WMS warehouse ID from login. For using generic warehouse in login, role must have "Generic Warehouse" = true
Method: POST
Return: stockline ID for success or error message (start with "ERROR: ")
Data format:
{
"MovementLineConfirmation_ID": 1002125,
"SerialNumbers":
[
{
"Barcode1": 999876
}
]
}
Attached serial numbers of more confimation lines
URL: https://api.socratecloud.com/scwi/rest/stock_line/full/transfer_confirm_array/{version}?startRow={0}&endRow={100}&accessToken={access_token}&LocationWarehouse_ID={warehouse_ID}
Mandatory parameter: LocationWarehouse_ID - generic warehouse ID or WMS warehouse ID from login. For using generic warehouse in login, role must have "Generic Warehouse" = true
Method: POST
Return: stockline ID for success or error message (start with "ERROR: ")
Data format:
{
"StockLines":
[
{
"MovementLineConfirmation_ID": 1002172,
"SerialNumbers":
[
{
"Barcode1": 999876567
}
]
},
{
"MovementLineConfirmation_ID": 1002173,
"SerialNumbers":
[
{
"Barcode1": 999876342
}
]
}
]
}