curl --request PUT \
--url https://app.dilli.studio/api/v1/products/{id} \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <api-key>' \
--data '
{
"id": "<string>",
"name": "<string>",
"sku": "<string>",
"type": "product",
"description": "<string>",
"price": 123,
"cost": 123,
"currency": "<string>",
"unit": "<string>",
"tax_rate": 123,
"is_active": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
'