Inventory Stock Movement

You can move stock of a specified product code and quantity from one location to another.

Endpoint: https://YOUR-ACCOUNT-NAME.despatchcloud.co.uk/ws/v1/wsorders/inventory_stock_movement/(product_code)
Method: POST
 
Field Name  Required FormatNotes
source_location_idYesInteger 
target_location_idYesInteger 
quantityYesInteger 

Example Request (POST):
Copy{
  "source_location_id": 0,
  "target_location_id": 10,
  "quantity": 5
}

Example Response:
CopyCopyCopy{
  "status": "SUCCESS"
}