# Clone an Item Endpoint: POST /api/v1/items/{item_id}/copy 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) Copy item and set this quantity - `folder_id` (number) Target folder ID. If not defined then will be moved to root - `include_subtree` (boolean) Copy with nested items or not - `new_sid` (boolean) Copy with new SID generation or not ## Response 200 fields (application/json): - `data` (object) - `data.id` (number) - `data.name` (string) - `data.price` (number) - `data.quantity` (number) - `data.notes` (string) - `data.type` (string) - `data.parent_id` (number) - `data.created_at` (string) - `data.updated_at` (string) - `data.sid` (string) - `data.tag_names` (array) - `data.tags` (array) - `data.photos` (array) - `data.photos.url` (string, required) - `data.custom_attribute_values` (array) - `data.custom_attribute_values.custom_attribute_id` (number) - `data.custom_attribute_values.custom_attribute_name` (string) - `data.custom_attribute_values.value` (string) ## Response 400 fields (application/json): - `message` (string) ## Response 401 fields (application/json): - `message` (string) ## Response 404 fields (application/json): - `message` (string)