Menu items, when returned from the API have the following fields

Field Name Type Description Example value
last_updated_at Unix Time Last time the item was updated 1709055504
item_id string(UUID) Unique identifier for this item. "e79a0b74-3aba-4149-9f74-0bb5791a6ee6"
event_id string(UUID) Unique identifier for the dashboard "e79a0b74-3aba-4149-9f74-0bb5791a6ee6"
price int Price of the item in centavos / cents 900
description string Description of the item "Mohito"
loyalty_reward_eligible bool Flag indicating if the item is eligible to have loyalty points rewarded when it’s purchased true
loyalty_reward_amount int Number of points rewarded when the item is purchased 10
loyalty_redeem_eligible bool Flag indicating if the item is eligible to be redeemed with loyalty points
loyalty_redeem_price int Number of points required to redeem the item using loyalty points 100
sales_tax_basis_points int Sales tax percentage expressed in basis points. Example, 8.5% sales tax is returned as 850 850
last_updated_by_account_id string(UUID) Account id of the user who last updated this item "1056396b-03b1-4da5-9ceb-b7004e976213"
is_deleted bool Flag indicating if the item has been deleted or not false
print_chit bool Flag indicating if a back of house order ticket should be printed when this item is ordered true
categories Array[[category](<https://wristcoin.notion.site/55e66873cbba48f3bed287505beb42bb>)] A list of associated categories. Returned when embed=categories. Omitted if empty. `[
        {
            "last_updated_at": 1620664216,
            "category_id": "00c898ac-b1ad-11eb-80ad-eb6923983752",
            "event_id": "e7cb9962-ab76-11eb-a0ad-9ba3baa4d570",
            "name": "Tacos",
            "last_updated_by_account_id": "dad320aa-a765-11eb-987e-3f3c0973da88"
        },
        {
            "last_updated_at": 1634343168,
            "category_id": "68cd0c8c-b1ab-11eb-817b-0fb3987d08cf",
            "event_id": "e7cb9962-ab76-11eb-a0ad-9ba3baa4d570",
            "name": "Food",
            "last_updated_by_account_id": "d1c57d02-f26c-11e7-842e-938706cb1939"
        },
        {
            "last_updated_at": 1692055771,
            "category_id": "6bc770dc-3afa-11ee-bcd1-37b189166d23",
            "event_id": "e7cb9962-ab76-11eb-a0ad-9ba3baa4d570",
            "name": "Bar Food",
            "last_updated_by_account_id": "b9d4d6bc-c429-11e9-a259-4ba73e64660c"
        }
    ],` |

| recipes | recipe | The associated recipe, which is a list of the ingredients. Returned when embed=recipe. Omitted if empty. | [ { "recipe_id": "dfe8a28f-a571-468c-8320-a52355644225", "item_id": "00ac42e2-b1ad-11eb-b089-532fff79f0ea", "inventory_item_id": "e83bc668-caab-11ee-bbb5-636c2f157602", "amount": 1, "name": "Al Pastor", "description": "", "is_deleted": false, "uom": "ea", "inventory_item_name": "Tortilla", "last_updated_by_account_id": "bad756de-ae5d-11ee-8592-6b7b0cda864d", "last_updated_at": "2024-02-13T20:12:01.524101Z" }, { "recipe_id": "068ec9a8-91c0-4172-b19d-de9206496948", "item_id": "00ac42e2-b1ad-11eb-b089-532fff79f0ea", "inventory_item_id": "fa41a602-caab-11ee-8907-278dc68b48d2", "amount": 200, "name": "Al Pastor", "description": "", "is_deleted": false, "uom": "g", "inventory_item_name": "Pork", "last_updated_by_account_id": "bad756de-ae5d-11ee-8592-6b7b0cda864d", "last_updated_at": "2024-02-13T20:12:01.524101Z" } |