curl --location --request PUT '/products/1' \
--header 'Authorization: Bearer {{AuthToken}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"success": true,
"message": "Product updated successfully.",
"data": {
"id": 1,
"name": "Notebook Dell Inspiron",
"description": "Notebook atualizado",
"price": "4599.90",
"image_url": "https://site.com/imagem-nova.jpg",
"category": {
"id": 2,
"name": "Informática"
},
"created_at": "2026-03-27T10:00:00Z",
"updated_at": "2026-03-27T11:00:00Z"
}
}'