POST
/products/create
curl \
--request POST 'http://localhost:5000/api/products/create' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: multipart/form-data" \
--form "name=string" \
--form "description=string" \
--form "price=42.0" \
--form "category=Art" \
--form "imageUrl=@file"