curl --location --request POST '/products' \
--header 'Authorization: Bearer {{AuthToken}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Notebook Dell",
"description": "Notebook com 16GB RAM",
"price": 4999.9,
"category_id": 1,
"image_url": "https://site.com/imagem.jpg"
}'{
"success": true,
"message": "Category created successfully.",
"data": {
"id": 1,
"name": "Eletrônicos"
}
}