curl -X POST https://lightyshare.com/api/token-secured/product \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"product": {
"title": "Complete Camera Kit",
"description": "Professional camera with accessories",
"rent": 300.0,
"cost": 4500.0,
"productType": 0,
"stock_type": 0,
"sku": "KIT-CAM-001",
"quantity": 1,
"equipments": [
{
"name": "Battery",
"quantity": 4
},
{
"name": "Memory Card",
"quantity": 2
},
{
"name": "Lens Cap",
"quantity": 1
}
],
"images": [
{
"src": "https://cdn.example.com/camera-front.jpg"
},
{
"src": "https://cdn.example.com/camera-back.jpg"
}
],
"online": true
}
}'