curl --request POST \
--url https://api-eu.flexportal.io/v1/products \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'Tenant-ID: <tenant-id>' \
--data '
{
"productSku": "MACBOOK-PRO-16-M3",
"name": "MacBook Pro 16\" M3 Pro",
"category": "Laptops",
"brand": "Apple",
"specification": {
"processor": "Apple M3 Pro",
"memory": "18GB",
"storage": "512GB SSD",
"display": "16.2-inch Liquid Retina XDR"
},
"status": "active",
"variants": [
{
"variantSku": "MACBOOK-PRO-16-M3-A",
"variantName": "Grade A - Like New",
"grade": "A",
"listPrice": 2499,
"acquisitionCost": 1800,
"pricing": [
{
"contractLength": 12,
"monthlyPrice": 149.99
},
{
"contractLength": 24,
"monthlyPrice": 99.99
},
{
"contractLength": 36,
"monthlyPrice": 79.99
}
]
},
{
"variantSku": "MACBOOK-PRO-16-M3-B",
"variantName": "Grade B - Good",
"grade": "B",
"listPrice": 2199,
"acquisitionCost": 1500,
"pricing": [
{
"contractLength": 12,
"monthlyPrice": 129.99
},
{
"contractLength": 24,
"monthlyPrice": 89.99
},
{
"contractLength": 36,
"monthlyPrice": 69.99
}
]
}
]
}
'