const products = [
{
title: "Canon 70-200mm f/2.8",
description: "Professional telephoto zoom lens",
rent: 80.0,
cost: 2100.0,
sku: "CANON-70-200-001",
quantity: 1
},
{
title: "Manfrotto Tripod",
description: "Professional carbon fiber tripod",
rent: 40.0,
cost: 600.0,
sku: "MANFROTTO-TRIPOD-001",
quantity: 2
},
{
title: "Rode NTG5 Shotgun Mic",
description: "Professional shotgun microphone",
rent: 35.0,
cost: 400.0,
sku: "RODE-NTG5-001",
quantity: 1
}
];
async function createProducts(token, products) {
const results = [];
for (const productData of products) {
try {
const response = await fetch('https://lightyshare.com/api/token-secured/product', {
method: 'POST',
headers: {
'Authorization': `Bearer ${token}`,
'Content-Type': 'application/json'
},
body: JSON.stringify({
product: {
...productData,
productType: 0,
stock_type: 0,
online: true
}
})
});
if (response.ok) {
const result = await response.json();
results.push({ success: true, id: result.id, title: productData.title });
} else {
results.push({ success: false, title: productData.title, error: response.status });
}
} catch (error) {
results.push({ success: false, title: productData.title, error: error.message });
}
}
return results;
}