curl --request PATCH \
--url https://api.example.com/products/{id} \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"description": "<string>",
"price": 123,
"compare_at_price": 123,
"currency": "<string>",
"sku": "<string>",
"status": "<string>",
"image_url": "<string>",
"product_url": "<string>"
}
'