products
Create a new product
Creates a new product entry.
post/products
Request body
Example request
{
"name": "Product 1",
"description": "This is a product",
"price": 100,
"stock": 100,
"category": "Category 1"
}Response
Product created successfully
Example response
{
"status": "success",
"status_code": 201
}