# Move an Item Endpoint: POST /api/v1/items/{item_id}/move Version: 1.0.0 ## Path parameters: - `item_id` (number, required) Item ID Example: "2" ## Header parameters: - `Accept` (string) e.g. application/json Example: "application/json" - `Authorization` (string) e.g. Bearer Example: "Bearer " ## Request fields (application/json): - `quantity` (number, required) Move quantity of item - `folder_id` (number) Target folder ID. If not defined then will be moved to root - `leave_zero_quantity` (boolean) Determines wether items with zero quantity are kept or not. Default is false. ## Response 200 fields (application/json): - `data` (object) - `data.id` (number) - `data.name` (string) - `data.price` (number) - `data.quantity` (number) - `data.notes` (string) - `data.parent_id` (number) - `data.sid` (string) - `data.tag_names` (array) - `data.tags` (array) - `data.type` (string) - `data.created_at` (string) - `data.updated_at` (string) ## Response 400 fields (application/json): - `message` (string) ## Response 401 fields (application/json): - `message` (string) ## Response 404 fields