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
Example Request (POST):
Example Response:
Method: POST
| Field Name | Required | Format | Notes |
| source_location_id | Yes | Integer | |
| target_location_id | Yes | Integer | |
| quantity | Yes | Integer |
Example Request (POST):
Copy{
"source_location_id": 0,
"target_location_id": 10,
"quantity": 5
}Example Response:
CopyCopyCopy{ "status": "SUCCESS" }