# List of ingriedients List of ingriedients used in kitchen. Endpoint: GET /ingredients Version: 1.0.0 Security: jwtToken ## Response 200 fields (application/json): - `object` (string, required) Enum: "list" - `page` (object, required) - `page.endCursor` (string, required) Identifier of last ingridient in results. Example: "ZG9uJ3QgZGVjb2RlIG1l" - `page.startCursor` (string, required) Identifier of first ingredient in results. Example: "ZG9uJ3QgZGVjb2RlIG1l" - `page.hasNextPage` (boolean, required) Determinates if results have next page. Example: true - `page.hasPrevPage` (boolean, required) Determinates if results have previous page. - `page.limit` (number, required) Number of items return in single page. Example: 100 - `page.total` (number, required) Number of items in total. Example: 100 - `items` (array, required) - `items.id` (string, required) Identifier of ingredient. - `items.kitchenId` (string, required) Example: "altman-family" - `items.name` (string, required) Name of ingredient. Example: "broccoli" - `items.quantity` (number, required) Quantity of the ingredient. Example: 10 - `items.unit` (string, required) Unit of the ingredient. Example: "cups" - `items.useBefore` (string, required) Expiration date of the ingredient. - `items.createdAt` (string, required) Production date of the ingredient. ## Response 401 fields (application/json+problem): - `title` (string) Summarized problem description. Example: "Unauthorized" - `status` (integer) HTTP status code. Enum: 401 - `detail` (string) More detail information about problem. Example: "You session already expired."