Ccreate an ingredient with a name
, price
, and in_stock_qty
. Ingredients will be associated with specific dishes.
The id
in the response is used retrieve the ingredient resource, which is most commonly used to check the in_stock_qty
value for tracking ingredient inventory and determining if a dish is available to order in the client app.
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The request body to create an ingredient to be included with dishes requires the following properties: name
, price
, and in_stock_qty
.
The body is of type object
.
Ingredient created successfully
The response is of type object
.
Ccreate an ingredient with a name
, price
, and in_stock_qty
. Ingredients will be associated with specific dishes.
The id
in the response is used retrieve the ingredient resource, which is most commonly used to check the in_stock_qty
value for tracking ingredient inventory and determining if a dish is available to order in the client app.
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The request body to create an ingredient to be included with dishes requires the following properties: name
, price
, and in_stock_qty
.
The body is of type object
.
Ingredient created successfully
The response is of type object
.