curl --location --request POST '/v1/products' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Product Name",
"category": "Electronics",
"is_active": true
}'
{
"data": {
"id": "cf0a482d-4575-4a65-a581-e8155c1f249a",
"name": "Product Name",
"category": "Electronics",
"is_active": true,
"created_at": "2025-04-15T08:48:38.163Z",
"updated_at": "2025-04-15T08:48:38.163Z"
},
"message": "Product created successfully"
}